diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-22 05:32:56 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-22 05:32:56 +0000 |
commit | b200d0993df95171186751ee51145d1efd39dbf3 (patch) | |
tree | 55b23e4a2dace0290eacf05f8327c4e7972c4d96 | |
parent | a0fa71837afa2ab986ae4643da96de597e65b79a (diff) | |
download | postgresql-b200d0993df95171186751ee51145d1efd39dbf3.tar.gz postgresql-b200d0993df95171186751ee51145d1efd39dbf3.zip |
Adjust expected error message due to change of keyword case-folding.
-rw-r--r-- | src/test/regress/output/constraints.source | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/output/constraints.source b/src/test/regress/output/constraints.source index c83db895ffa..4732a8852b0 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; |