Files
email-tracker/external/duckdb/test/sql/peg_parser/on_conflict.test
2025-10-24 19:21:19 -05:00

9 lines
346 B
SQL

# name: test/sql/peg_parser/on_conflict.test
# description: Test insert into with conflict syntax in peg parser
# group: [peg_parser]
require autocomplete
statement ok
CALL check_peg_parser($TEST_PEG_PARSER$INSERT INTO tbl_comp VALUES (2, 'hello', 1, 'world') ON CONFLICT (c, b) DO UPDATE SET a = excluded.a, d = excluded.d;$TEST_PEG_PARSER$);