From: Tomas Vondra Date: Sat, 4 Mar 2017 04:02:52 +0000 (+0100) Subject: resolve issues in create_index regression suite (obsolete error messages) X-Git-Tag: XL_10_R1BETA1~378 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=278aba732835c04ce1aa93ffa6c55392abc6a661;p=postgres-xl.git resolve issues in create_index regression suite (obsolete error messages) The expected output included error messages that were however made unnecessary some time ago by making the table replicated. --- diff --git a/src/test/regress/expected/create_index.out b/src/test/regress/expected/create_index.out index 23dd1f7747..6b80fc40f3 100644 --- a/src/test/regress/expected/create_index.out +++ b/src/test/regress/expected/create_index.out @@ -2535,11 +2535,8 @@ INSERT INTO func_index_heap VALUES('QWERTY'); -- tables that already contain data. -- create unique index hash_f8_index_1 on hash_f8_heap(abs(random)); -ERROR: Unique index of partitioned table must contain the hash/modulo distribution column. create unique index hash_f8_index_2 on hash_f8_heap((seqno + 1), random); -ERROR: Unique index of partitioned table must contain the hash/modulo distribution column. create unique index hash_f8_index_3 on hash_f8_heap(random) where seqno > 1000; -ERROR: Unique index of partitioned table must contain the hash/modulo distribution column. -- -- Try some concurrent index builds --