projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8f632c
)
Fix regression test output
author
Magnus Hagander
Sat, 9 Dec 2017 12:45:06 +0000
(13:45 +0100)
committer
Magnus Hagander
Sat, 9 Dec 2017 12:45:06 +0000
(13:45 +0100)
Missed this in the last commit.
src/test/regress/expected/identity.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/identity.out
b/src/test/regress/expected/identity.out
index ddc69505937811059aef5c41bc096bc7459cb41e..87ef0d3b2a213620c2a01b6b5631376812388bc6 100644
(file)
--- a/
src/test/regress/expected/identity.out
+++ b/
src/test/regress/expected/identity.out
@@
-356,5
+356,5
@@
CREATE TABLE itest_parent (f1 date NOT NULL, f2 text, f3 bigint) PARTITION BY RA
CREATE TABLE itest_child PARTITION OF itest_parent (
f3 WITH OPTIONS GENERATED ALWAYS AS IDENTITY
) FOR VALUES FROM ('2016-07-01') TO ('2016-08-01'); -- error
-ERROR: identi
f
y columns are not supported on partitions
+ERROR: identi
t
y columns are not supported on partitions
DROP TABLE itest_parent;