Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix directory table ci pipeline problems. #414

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-- setup for temp tablespace
! rm -rf '@testtablespace@';
! mkdir -p '@testtablespace@';
DROP TABLESPACE IF EXISTS directory_tblspc;
CREATE TABLESPACE directory_tblspc LOCATION '@testtablespace@';

CREATE EXTENSION IF NOT EXISTS gp_inject_fault;
Expand Down
2 changes: 2 additions & 0 deletions src/test/isolation2/output/local_directory_table_mixed.source
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

! mkdir -p '@testtablespace@';

DROP TABLESPACE IF EXISTS directory_tblspc;
DROP
CREATE TABLESPACE directory_tblspc LOCATION '@testtablespace@';
CREATE

Expand Down
4 changes: 3 additions & 1 deletion src/test/regress/input/directory_table.source
Original file line number Diff line number Diff line change
Expand Up @@ -644,4 +644,6 @@ DROP TRIGGER IF EXISTS trigtest_a_row_tg_dirtable_1 ON dir_table1;
DROP TRIGGER IF EXISTS trigtest_b_stmt_tg_dirtable_1 ON dir_table1;
DROP TRIGGER IF EXISTS trigtest_a_stmt_tg_dirtable_1 ON dir_table1;

DROP TABLESPACE directory_tblspc;
\!rm -rf @testtablespace@;

DROP TABLESPACE directory_tblspc;
1 change: 1 addition & 0 deletions src/test/regress/output/directory_table.source
Original file line number Diff line number Diff line change
Expand Up @@ -1844,4 +1844,5 @@ DROP TRIGGER IF EXISTS trigtest_b_stmt_tg_dirtable_1 ON dir_table1;
NOTICE: relation "dir_table1" does not exist, skipping
DROP TRIGGER IF EXISTS trigtest_a_stmt_tg_dirtable_1 ON dir_table1;
NOTICE: relation "dir_table1" does not exist, skipping
\!rm -rf @testtablespace@;
DROP TABLESPACE directory_tblspc;
1 change: 1 addition & 0 deletions src/test/regress/output/directory_table_optimizer.source
Original file line number Diff line number Diff line change
Expand Up @@ -1839,4 +1839,5 @@ DROP TRIGGER IF EXISTS trigtest_b_stmt_tg_dirtable_1 ON dir_table1;
NOTICE: relation "dir_table1" does not exist, skipping
DROP TRIGGER IF EXISTS trigtest_a_stmt_tg_dirtable_1 ON dir_table1;
NOTICE: relation "dir_table1" does not exist, skipping
\!rm -rf @testtablespace@;
DROP TABLESPACE directory_tblspc;
Loading