summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier2012-06-28 06:18:49 +0000
committerMichael Paquier2012-06-28 06:18:49 +0000
commit2a32c0ae0e2d01f3cc82384b24f610bd11a23755 (patch)
tree86f23d057c040fa44cdb459084df985736ab80b5 /src
parent67ab404afa3ac68f58f586ce889f116b8ff65e3b (diff)
Fix for test rowtypes
This is to realign XC regressions with merge c1d9579.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/rowtypes_1.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/rowtypes_1.out b/src/test/regress/expected/rowtypes_1.out
index 7a504f95fc..112bb4601e 100644
--- a/src/test/regress/expected/rowtypes_1.out
+++ b/src/test/regress/expected/rowtypes_1.out
@@ -86,7 +86,7 @@ select * from people;
-- at the moment this will not work due to ALTER TABLE inadequacy:
alter table fullname add column suffix text default '';
-ERROR: cannot alter table "fullname" because column "people"."fn" uses its rowtype
+ERROR: cannot alter table "fullname" because column "people.fn" uses its row type
-- but this should work:
alter table fullname add column suffix text default null;
select * from people;