diff options
author | Tomas Vondra | 2017-03-04 04:02:52 +0000 |
---|---|---|
committer | Tomas Vondra | 2017-03-04 04:02:52 +0000 |
commit | 278aba732835c04ce1aa93ffa6c55392abc6a661 (patch) | |
tree | a1022bef6193eacfccf9c83b55c84e6706f191f8 | |
parent | 73123c023aee1c7ba537f88f697a43e6964edb37 (diff) |
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.
-rw-r--r-- | src/test/regress/expected/create_index.out | 3 |
1 files changed, 0 insertions, 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 -- |