This is an automated email from the ASF dual-hosted git repository. maxyang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 82e85d8b58e872f56454173d61e8425d8948b771 Author: Huiliang.liu <[email protected]> AuthorDate: Thu Mar 31 06:43:22 2022 +0800 drop s3 external table (#13334) drop the s3 external table in test cases to make sure the final DROP PROTOCOL IF EXISTS s3 operation success --- gpcontrib/gpcloud/regress/input/3_01_create_wet.source | 1 + gpcontrib/gpcloud/regress/output/3_01_create_wet.source | 1 + 2 files changed, 2 insertions(+) diff --git a/gpcontrib/gpcloud/regress/input/3_01_create_wet.source b/gpcontrib/gpcloud/regress/input/3_01_create_wet.source index c8e7888e66..07f35c4c1d 100644 --- a/gpcontrib/gpcloud/regress/input/3_01_create_wet.source +++ b/gpcontrib/gpcloud/regress/input/3_01_create_wet.source @@ -2,3 +2,4 @@ CREATE WRITABLE EXTERNAL TABLE s3regress_create_wet (date text, time text, open low float, volume int) LOCATION('s3://s3-us-west-2.amazonaws.com/@write_prefix@/create/ config=@config_file@') FORMAT 'csv'; DROP EXTERNAL TABLE s3regress_create_wet; +DROP EXTERNAL TABLE s3regress_create_wet_on_master; diff --git a/gpcontrib/gpcloud/regress/output/3_01_create_wet.source b/gpcontrib/gpcloud/regress/output/3_01_create_wet.source index 1944c101cb..95e7a194b8 100644 --- a/gpcontrib/gpcloud/regress/output/3_01_create_wet.source +++ b/gpcontrib/gpcloud/regress/output/3_01_create_wet.source @@ -1,3 +1,4 @@ CREATE WRITABLE EXTERNAL TABLE s3regress_create_wet (date text, time text, open float, high float, low float, volume int) LOCATION('s3://s3-us-west-2.amazonaws.com/@write_prefix@/create/ config=@config_file@') FORMAT 'csv'; DROP EXTERNAL TABLE s3regress_create_wet; +DROP EXTERNAL TABLE s3regress_create_wet_on_master; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
