Skip to content
Snippets Groups Projects
Commit a85f2c20 authored by Jarosław Staniek's avatar Jarosław Staniek
Browse files

Initial change for autotests supporting #332161 (support for id escaping)

- add table 'table' to sqlParserTest.kexi
- add test cases (3 fail for now)

CCBUG:332161
parent 3e7b595e
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -320,6 +320,14 @@ select TRUE IS NULL;
select TRUE <> TRUE OR FALSE == TRUE;
-- ERROR: 'IS' is reserved keyword
select TRUE IS NOT FALSE;
-- ERROR: Identifier escaping: reserved keyword
SELECT * FROM table;
SELECT id FROM table;
SELECT [id] FROM table;
-- Identifier escaping
SELECT * FROM [table];
SELECT id FROM [table];
SELECT [id] FROM [table];
-- IS NULL/IS NOT NULL
select 1 IS NOT NULL;
select NULL IS NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment