From: Tom Lane Date: Sat, 24 Nov 2001 04:10:47 +0000 (+0000) Subject: Remove extraneous space that somehow got into expected alter_table.out. X-Git-Tag: REL7_2_BETA4~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e8b887e9d4d23abb7245793a792c13e4f7345e7;p=postgresql Remove extraneous space that somehow got into expected alter_table.out. The default diff switches prevented regression tests from complaining, but that doesn't make it correct. --- diff --git a/src/test/regress/expected/alter_table.out b/src/test/regress/expected/alter_table.out index f0232af426..b78e46c6f8 100644 --- a/src/test/regress/expected/alter_table.out +++ b/src/test/regress/expected/alter_table.out @@ -471,7 +471,7 @@ insert into atacc1 (test) values (2); insert into atacc1 (test) values (2); -- add a unique constraint (fails) alter table atacc1 add constraint atacc_test1 unique (test); - NOTICE: ALTER TABLE / ADD UNIQUE will create implicit index 'atacc_test1' for table 'atacc1' +NOTICE: ALTER TABLE / ADD UNIQUE will create implicit index 'atacc_test1' for table 'atacc1' ERROR: Cannot create unique index. Table contains non-unique values insert into atacc1 (test) values (3); drop table atacc1;