forked from greenplum-db/diskquota-archive
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from arenadata/1.0.3-sync
ADBDEV-1244 1.0.3 sync
- Loading branch information
Showing
15 changed files
with
196 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ inputs: | |
run: | ||
path: diskquota_src/concourse/scripts/test_diskquota.sh | ||
params: | ||
DISKQUOTA_OS: |
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,13 +1,15 @@ | ||
test: init | ||
test: prepare | ||
test: test_table_size | ||
# disable this tese due to GPDB behavior change | ||
# test: test_table_size | ||
test: test_fast_disk_check | ||
#test: test_insert_after_drop | ||
test: test_role test_schema test_drop_table test_column test_copy test_update test_toast test_truncate test_reschema test_temp_role test_rename test_delete_quota test_mistake | ||
test: test_truncate | ||
test: test_delete_quota | ||
test: test_partition | ||
test: test_vacuum | ||
test: test_primary_failure | ||
test: test_extension | ||
test: test_manytable | ||
test: clean | ||
test: test_insert_after_drop |
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,10 +1,11 @@ | ||
test: init | ||
test: prepare | ||
test: test_table_size | ||
#test: test_table_size | ||
test: test_fast_disk_check | ||
test: test_role test_schema test_drop_table test_column test_copy test_update test_toast test_truncate test_reschema test_temp_role test_rename test_delete_quota test_mistake | ||
test: test_truncate | ||
test: test_delete_quota | ||
test: test_partition | ||
test: test_manytable | ||
test: clean | ||
test: test_insert_after_drop | ||
#test: test_insert_after_drop |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-- start_ignore | ||
-- test case manytable change cluster level config, can not run in parallel. | ||
\! gpconfig -c diskquota.max_active_tables -v 2 > /dev/null | ||
-- end_ignore | ||
\! echo $? | ||
0 | ||
CREATE DATABASE test_manytable01; | ||
CREATE DATABASE test_manytable02; | ||
\c test_manytable01 | ||
CREATE TABLE a01(i int) DISTRIBUTED BY (i); | ||
CREATE TABLE a02(i int) DISTRIBUTED BY (i); | ||
CREATE TABLE a03(i int) DISTRIBUTED BY (i); | ||
INSERT INTO a01 values(generate_series(0, 500)); | ||
INSERT INTO a02 values(generate_series(0, 500)); | ||
INSERT INTO a03 values(generate_series(0, 500)); | ||
\c test_manytable02 | ||
CREATE TABLE b01(i int) DISTRIBUTED BY (i); | ||
INSERT INTO b01 values(generate_series(0, 500)); | ||
\c postgres | ||
DROP DATABASE test_manytable01; | ||
DROP DATABASE test_manytable02; | ||
-- start_ignore | ||
\! gpconfig -c diskquota.max_active_tables -v 1024 > /dev/null | ||
-- end_ignore |
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
Oops, something went wrong.