# This file contains a list of strings that are NOT valid SQL queries. # Each line contains a single SQL query. # Each line starts with a '!' char to indicate that parsing should fail. ! !1 !gibberish; !CREATE TABLE "table" FROM TBL FILE 'students.tbl';gibberish !CREATE TABLE "table" FROM TBL FILE 'students.tbl';1 !INSERT INTO test_table VALUESd (1, 2, 'test'); !SELECT * FROM t WHERE a = ? AND b = ?;gibberish; !SHOW COLUMNS; !DESCRIBE; !COPY; !COPY students; !COPY students FROM 'students_file' WITH FORMAT XYZ; !COPY students TO 'students_file' WITH FORMAT XYZ; !select a + 2 as b(spam, eggs) from B; !WITH a AS SELECT 1 SELECT 1; !WITH a AS (SELECT ) SELECT 1; !WITH a AS (WITH b AS (SELECT 1) SELECT 1) SELECT 1; # We do not support nested WITH clauses !WITH a AS (SELECT ) b AS (SELECT ) SELECT 1; # Missing comma between WITH descriptions !BEGIN TRANSACTION transName; # Transaction naming is currently not supported