This is an automated email from the ASF dual-hosted git repository.
xudong963 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new f75d25fec Add negative test for SORT BY (#5254)
f75d25fec is described below
commit f75d25fec2c1a5581eeb8ce73a890e5792df02c7
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Feb 12 01:18:19 2023 +0100
Add negative test for SORT BY (#5254)
---
datafusion/core/tests/sqllogictests/test_files/order.slt | 3 +++
1 file changed, 3 insertions(+)
diff --git a/datafusion/core/tests/sqllogictests/test_files/order.slt
b/datafusion/core/tests/sqllogictests/test_files/order.slt
index 0263781c5..f6477cb71 100644
--- a/datafusion/core/tests/sqllogictests/test_files/order.slt
+++ b/datafusion/core/tests/sqllogictests/test_files/order.slt
@@ -254,6 +254,9 @@ ORDER BY time;
2 2022-01-01T01:00:00
3 2022-01-02T00:00:00
+## SORT BY is not supported
+statement error DataFusion error: This feature is not implemented: SORT BY
+select * from t SORT BY time;
## Cleanup
statement ok