We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed SQL select updated_at from orders where updated_at>to_timestamp(1730562810);
Logical Plan [cubesql::compile::query_engine] Initial Plan: Projection: #orders.updated_at Filter: #orders.updated_at > str_to_date(Int64(1730562810)) TableScan: orders projection=None
Version: 1.1.2
internally to_timestamp calls are converted to str_to_date function which does not take into account of to_timestamp(double)
The text was updated successfully, but these errors were encountered:
fix(cubesql): Support to_timestamp(epoch) pg function, fix cube-js#8901
8a650b7
No branches or pull requests
Failed SQL
select updated_at from orders where updated_at>to_timestamp(1730562810);
Logical Plan
[cubesql::compile::query_engine] Initial Plan: Projection: #orders.updated_at
Filter: #orders.updated_at > str_to_date(Int64(1730562810))
TableScan: orders projection=None
Version:
1.1.2
internally to_timestamp calls are converted to str_to_date function which does not take into account of to_timestamp(double)
The text was updated successfully, but these errors were encountered: