-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust test cases for the cloudberrydb binary swap test (#537)
Change Summary: **Change 1: introduction of the "system_group" in Binary Swap test Previously, cloudberrydb introduced a new control group named "system_group" to manage the resource usage of the postmaster process and all other auxiliary processes. ``` select rsgname, parent from pg_resgroup where rsgname not like 'rg_dump_test%' order by oid; rsgname | parent ---------------+-------- default_group | 0 admin_group | 0 system_group | 0 (3 rows) ``` The "system_group" were added to the following three resource group test cases: resgroup_current_1_queue resgroup_other_2_queue resgroup_current_3_queue **Change 2: addressing missing DDL for "insert" test case under Binary Swap test suite ``` create table if not exists test_table_heap_with_toast (id int, col1 int, col2 text) with (appendonly=false); create table if not exists test_table_ao_with_toast (id int, col1 int, col2 text) with (appendonly=true, orientation=row); create table if not exists test_table_co_with_toast (id int, col1 int, col2 text) with (appendonly=true, orientation=column); ``` **Change 3: refinement of Binary Swap test suite scheduling** The "insert" and second occurrence of "pg_dumpall_current" were deemed unnecessary in the "schedule3" because no subsequent pg_dump comparison. Thus the redundant "pg_dumpall_current" has been removed and test case "insert" has been moved to "schedule1"
- Loading branch information
1 parent
6ba54ad
commit 1ce51c5
Showing
6 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
test: inserts views | ||
test: pg_dumpall_current | ||
test: gpcheckcat | ||
|
||
test: resgroup_cleanup_basic | ||
test: resgroup_current_1_queue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters