From c17af285648324734eaeed4ba5890c603ac50736 Mon Sep 17 00:00:00 2001 From: "Junfeng(Jerome) Yang" Date: Tue, 30 Jun 2020 16:44:19 +0800 Subject: [PATCH] Fix binary_swap failure. The pg_get_viewdef() function was fixed to properly show views define. Should remove the view which not supported in old version before the binary swap test. --- src/test/binary_swap/test_binary_swap_pre.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/binary_swap/test_binary_swap_pre.sql b/src/test/binary_swap/test_binary_swap_pre.sql index 9bc27adf4f..d29f4d470e 100644 --- a/src/test/binary_swap/test_binary_swap_pre.sql +++ b/src/test/binary_swap/test_binary_swap_pre.sql @@ -7,6 +7,7 @@ -- test suite. Ignore by removing the view. \c regression; DROP VIEW IF EXISTS locktest_segments; +DROP VIEW IF EXISTS notdisview; \c isolation2test; DROP VIEW IF EXISTS locktest_segments; -- GitLab