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
Datart Version 1.0.0.rc.3
Describe the bug 页面查询使用 select * from d1.t1 order by ts desc;不生效
select * from d1.t1 order by ts desc;
查看代码后发现为SQL会转换为
SELECT * FROM (select * from d1.t1 order by ts desc) AS DATART_VTABLE ORDER BY NULL
这样会导致排序异常,在图表侧使用排序也是这个问题
The text was updated successfully, but these errors were encountered:
scottsut
No branches or pull requests
Datart Version
1.0.0.rc.3
Describe the bug
页面查询使用
select * from d1.t1 order by ts desc;
不生效查看代码后发现为SQL会转换为
SELECT * FROM (select * from d1.t1 order by ts desc) AS DATART_VTABLE ORDER BY NULL
这样会导致排序异常,在图表侧使用排序也是这个问题
The text was updated successfully, but these errors were encountered: