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

REL7_1_STABLE
Tom Lane 25 years ago
parent a0fa71837a
commit b200d0993d
  1. 2
      src/test/regress/output/constraints.source

@ -50,7 +50,7 @@ ERROR: parser: parse error at or near ","
-- to avoid a shift/reduce conflict that arises from NOT NULL being -- to avoid a shift/reduce conflict that arises from NOT NULL being
-- part of the column definition syntax: -- part of the column definition syntax:
CREATE TABLE error_tbl (b1 bool DEFAULT 1 IN (1, 2)); 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: -- this should work, however:
CREATE TABLE error_tbl (b1 bool DEFAULT (1 IN (1, 2))); CREATE TABLE error_tbl (b1 bool DEFAULT (1 IN (1, 2)));
DROP TABLE error_tbl; DROP TABLE error_tbl;

Loading…
Cancel
Save