From 278aba732835c04ce1aa93ffa6c55392abc6a661 Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Sat, 4 Mar 2017 05:02:52 +0100 Subject: [PATCH] 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. --- src/test/regress/expected/create_index.out | 3 --- 1 file changed, 3 deletions(-) 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 -- -- 2.39.5