From ece8cc20ec77d6409898fed19673773657a3dd1a Mon Sep 17 00:00:00 2001 From: copetol Date: Thu, 7 Mar 2024 17:11:50 +0300 Subject: [PATCH] drop schema added --- src/test/regress/expected/function_with_case_when.out | 2 ++ src/test/regress/sql/function_with_case_when.sql | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/test/regress/expected/function_with_case_when.out b/src/test/regress/expected/function_with_case_when.out index 9f3d05cb1..18df5be0a 100644 --- a/src/test/regress/expected/function_with_case_when.out +++ b/src/test/regress/expected/function_with_case_when.out @@ -28,3 +28,5 @@ SELECT test_err('test'); test - ok (1 row) +DROP SCHEMA function_with_case CASCADE; +NOTICE: drop cascades to function test_err(text) diff --git a/src/test/regress/sql/function_with_case_when.sql b/src/test/regress/sql/function_with_case_when.sql index 4ad63b523..9b030d905 100644 --- a/src/test/regress/sql/function_with_case_when.sql +++ b/src/test/regress/sql/function_with_case_when.sql @@ -23,3 +23,5 @@ end;$$ ; -- call function SELECT test_err('test'); + +DROP SCHEMA function_with_case CASCADE;