-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
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
feat(fuse): add system$clustering_information function #5426
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Thanks for the contribution! Please review the labels and make any necessary changes. |
query/src/storages/fuse/table_functions/clustering_informations/clustering_information.rs
Outdated
Show resolved
Hide resolved
query/src/storages/fuse/table_functions/clustering_informations/clustering_information.rs
Show resolved
Hide resolved
26d8a8e
to
a0f5686
Compare
/LGTM |
|
||
select * from t09_0014 order by b, a; | ||
|
||
--Bug in cluster mode: https://github.com/datafuselabs/databend/issues/5473 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can skip the test in cluster mode with a '_cluster' suffix new test file, let's run it only in the stand-alone mode.
0 3 | ||
1 3 | ||
4 4 | ||
ERROR 1105 (HY000) at line 9: Code: 1002, displayText = Unimplement error. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This error message is not stable with the at line 9:
.
Can we set an ErrCode number for it? @zhang2014 @sundy-li
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use -- {ErrorCode 1002}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The -- {ErrorCode 1002}
should be set on the 09_0014_func_clustering_information_function.sql
, but this test will not work with standalone.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me comment out the case first, this bug will be fixed soon.
0 3 | ||
1 3 | ||
4 4 | ||
ERROR 1105 (HY000) at line 9: Code: 1002, displayText = Unimplement error. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This error message is not stable with the at line 9:
.
Can we set an ErrCode number for it? @zhang2014 @sundy-li
Let's merge first. |
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
Changelog
Related Issues
Fixes #5439