Skip to content
Snippets Groups Projects
Commit b200d099 authored by Tom Lane's avatar Tom Lane
Browse files

Adjust expected error message due to change of keyword case-folding.

parent a0fa7183
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ ERROR: parser: parse error at or near ","
-- to avoid a shift/reduce conflict that arises from NOT NULL being
-- part of the column definition syntax:
CREATE TABLE error_tbl (b1 bool DEFAULT 1 IN (1, 2));
ERROR: parser: parse error at or near "in"
ERROR: parser: parse error at or near "IN"
-- this should work, however:
CREATE TABLE error_tbl (b1 bool DEFAULT (1 IN (1, 2)));
DROP TABLE error_tbl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment