You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create or replace table t_17146(
data variant,
user_id int,
created_at timestamp
);
SELECT data,
user_id,
created_at
FROM t_17146
WHERE data::STRING LIKE '%xxx%' QUALIFY row_number() OVER (
PARTITION BY user_id
ORDER BY created_at DESC
)=1
LIMIT 1;
error: APIError: QueryFailed: [1006]Unable to get field named "1". Valid fields: ["0", "4"]
Summary
Lazy topn should be disabled in query with qualify
The text was updated successfully, but these errors were encountered: