-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: add sqlness job Signed-off-by: Ruihang Xia <[email protected]> * update sqlness to official release Signed-off-by: Ruihang Xia <[email protected]> * filter out backtrace Signed-off-by: Ruihang Xia <[email protected]> * fix error display Signed-off-by: Ruihang Xia <[email protected]> * close once_cell feature gate Signed-off-by: Ruihang Xia <[email protected]> Signed-off-by: Ruihang Xia <[email protected]>
- Loading branch information
Showing
7 changed files
with
77 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
select 1; | ||
|
||
+--------------------------+ | ||
| Int64(1), #Field, #Int64 | | ||
+--------------------------+ | ||
| 1 | | ||
+--------------------------+ | ||
+----------+ | ||
| Int64(1) | | ||
+----------+ | ||
| 1 | | ||
+----------+ | ||
|
||
select 2 + 3; | ||
|
||
+----------------------------------------+ | ||
| Int64(2) Plus Int64(3), #Field, #Int64 | | ||
+----------------------------------------+ | ||
| 5 | | ||
+----------------------------------------+ | ||
+---------------------+ | ||
| Int64(2) + Int64(3) | | ||
+---------------------+ | ||
| 5 | | ||
+---------------------+ | ||
|
||
select 4 + 0.5; | ||
|
||
+----------------------------------------------+ | ||
| Int64(4) Plus Float64(0.5), #Field, #Float64 | | ||
+----------------------------------------------+ | ||
| 4.5 | | ||
+----------------------------------------------+ | ||
+-------------------------+ | ||
| Int64(4) + Float64(0.5) | | ||
+-------------------------+ | ||
| 4.5 | | ||
+-------------------------+ | ||
|
||
select "a"; | ||
|
||
Failed to execute, error: Datanode { code: 1003, msg: "Failed to execute query: select \"a\";, source: Failed to select from table, source: Error occurred on the data node, code: 3000, msg: Failed to execute sql, source: Cannot plan SQL: SELECT \"a\", source: Error during planning: Invalid identifier '#a' for schema fields:[], metadata:{}" } | ||
Failed to do Flight get, addr: 127.0.0.1:4001, code: 3000, err_msg: Failed to execute sql statement, source: Failed to execute sql, source: Failure during query planning, source: Cannot plan SQL: SELECT "a", source: Schema error: No field named 'a'. Valid fields are . | ||
|
||
select "A"; | ||
|
||
Failed to execute, error: Datanode { code: 1003, msg: "Failed to execute query: select \"A\";, source: Failed to select from table, source: Error occurred on the data node, code: 3000, msg: Failed to execute sql, source: Cannot plan SQL: SELECT \"A\", source: Error during planning: Invalid identifier '#A' for schema fields:[], metadata:{}" } | ||
Failed to do Flight get, addr: 127.0.0.1:4001, code: 3000, err_msg: Failed to execute sql statement, source: Failed to execute sql, source: Failure during query planning, source: Cannot plan SQL: SELECT "A", source: Schema error: No field named 'A'. Valid fields are . | ||
|
||
select * where "a" = "A"; | ||
|
||
Failed to execute, error: Datanode { code: 1003, msg: "Failed to execute query: select * where \"a\" = \"A\";, source: Failed to select from table, source: Error occurred on the data node, code: 3000, msg: Failed to execute sql, source: Cannot plan SQL: SELECT * WHERE \"a\" = \"A\", source: Error during planning: Invalid identifier '#a' for schema fields:[], metadata:{}" } | ||
Failed to do Flight get, addr: 127.0.0.1:4001, code: 3000, err_msg: Failed to execute sql statement, source: Failed to execute sql, source: Failure during query planning, source: Cannot plan SQL: SELECT * WHERE "a" = "A", source: Schema error: No field named 'a'. Valid fields are . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters