-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Runji Wang <wangrunji0408@163.com>
- Loading branch information
1 parent
68d499e
commit c07550a
Showing
10 changed files
with
209 additions
and
109 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
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
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,7 +1,8 @@ | ||
# This file is automatically generated by `src/sqlparser/tests/parser_test.rs`. | ||
- input: INSERT public.customer (id, name, active) VALUES (1, 2, 3) | ||
error_msg: |- | ||
sql parser error: Expected INTO, found: public at line 1, column 8 | ||
Near "INSERT" | ||
sql parser error: expected INTO, found: public at line 1, column 8 | ||
LINE 1: INSERT public.customer (id, name, active) VALUES (1, 2, 3) | ||
^ | ||
- input: INSERT INTO t VALUES(1,3), (2,4) RETURNING *, a, a as aaa | ||
formatted_sql: INSERT INTO t VALUES (1, 3), (2, 4) RETURNING (*, a, a AS aaa) |
Oops, something went wrong.