From: Tom Lane Date: Thu, 22 Feb 2001 05:32:56 +0000 (+0000) Subject: Adjust expected error message due to change of keyword case-folding. X-Git-Tag: REL7_1~321 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b200d0993df95171186751ee51145d1efd39dbf3;p=users%2Fhanada%2Fpostgres.git Adjust expected error message due to change of keyword case-folding. --- diff --git a/src/test/regress/output/constraints.source b/src/test/regress/output/constraints.source index c83db895ff..4732a8852b 100644 --- a/src/test/regress/output/constraints.source +++ b/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 -- 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;