Merge pull request #2165 from citusdata/enterprise_test_fix_drop_table_add

enterprise test fixes
pull/2159/head
Mehmet Furkan ŞAHİN 2018-05-10 14:22:59 +03:00 committed by GitHub
commit bdfe1ed702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -142,3 +142,6 @@ SELECT * FROM varchar_hash_partitioned_table WHERE id = 6;
6 | Jason
(1 row)
DROP TABLE composite_type_partitioned_table;
DROP TABLE bugs;
DROP TABLE varchar_hash_partitioned_table;

View File

@ -126,3 +126,6 @@ SELECT * FROM varchar_hash_partitioned_table WHERE id = 1;
UPDATE varchar_hash_partitioned_table SET id = 6 WHERE name = 'Jason';
SELECT * FROM varchar_hash_partitioned_table WHERE id = 6;
DROP TABLE composite_type_partitioned_table;
DROP TABLE bugs;
DROP TABLE varchar_hash_partitioned_table;