summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2018-05-15 10:30:12 +0000
committerPavan Deolasee2018-05-21 06:11:56 +0000
commite47a24a606356ba1fc7faf1560c696f4eb892388 (patch)
tree9ca51f0bb9e5e26bf4ec50f4ec8a2eb5a41ba18f
parent7dd8490e8861e0f31463385484f73044171c26db (diff)
Accept regression diff.
We no longer see "DROP INDEX CONCURRENTLY cannot run inside a transaction block" if the index does not exists and we're running DROP IF EXISTS command
-rw-r--r--src/test/regress/expected/create_index.out2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/regress/expected/create_index.out b/src/test/regress/expected/create_index.out
index ef8044387b..375b0fcfa3 100644
--- a/src/test/regress/expected/create_index.out
+++ b/src/test/regress/expected/create_index.out
@@ -2612,7 +2612,6 @@ DROP INDEX CONCURRENTLY "concur_index2"; -- works
ERROR: index "concur_index2" does not exist
DROP INDEX CONCURRENTLY IF EXISTS "concur_index2"; -- notice
NOTICE: index "concur_index2" does not exist, skipping
-ERROR: DROP INDEX CONCURRENTLY cannot run inside a transaction block
-- failures
DROP INDEX CONCURRENTLY "concur_index2", "concur_index3";
ERROR: index "concur_index2" does not exist
@@ -2623,7 +2622,6 @@ ROLLBACK;
-- successes
DROP INDEX CONCURRENTLY IF EXISTS "concur_index3";
NOTICE: index "concur_index3" does not exist, skipping
-ERROR: DROP INDEX CONCURRENTLY cannot run inside a transaction block
DROP INDEX CONCURRENTLY "concur_index4";
ERROR: index "concur_index4" does not exist
DROP INDEX CONCURRENTLY "concur_index5";