projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0fa718
)
Adjust expected error message due to change of keyword case-folding.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 22 Feb 2001 05:32:56 +0000
(
05:32
+0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 22 Feb 2001 05:32:56 +0000
(
05:32
+0000)
src/test/regress/output/constraints.source
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/output/constraints.source
b/src/test/regress/output/constraints.source
index c83db895ffa20d6e640b94ea12b2f8885612dfc9..4732a8852b02a9b91e4a508da41987a2bf1cd55a 100644
(file)
--- 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;