diff options
author | Magnus Hagander <magnus@hagander.net> | 2017-12-09 13:45:06 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2017-12-09 13:45:06 +0100 |
commit | ce1468d02bdbbe3aa710463fa9faaf8cf865ad72 (patch) | |
tree | 71b9b9b740a353f40fb01d3b2926f04132543d1a | |
parent | d8f632caec3fcc5eece9d53d7510322f11489fe4 (diff) | |
download | postgresql-ce1468d02bdbbe3aa710463fa9faaf8cf865ad72.tar.gz postgresql-ce1468d02bdbbe3aa710463fa9faaf8cf865ad72.zip |
Fix regression test output
Missed this in the last commit.
-rw-r--r-- | src/test/regress/expected/identity.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/identity.out b/src/test/regress/expected/identity.out index ddc69505937..87ef0d3b2a2 100644 --- 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: identify columns are not supported on partitions +ERROR: identity columns are not supported on partitions DROP TABLE itest_parent; |