fix flakyness

pull/7271/head
Onur Tirtir 2023-10-30 17:33:56 +03:00
parent 45eebf6a5b
commit 2b34b58338
2 changed files with 3 additions and 3 deletions

View File

@ -117,10 +117,10 @@ SELECT citus_total_relation_size('customer_copy_hash');
-- Make sure we can get multiple sizes in a single query
SELECT citus_table_size('customer_copy_hash'),
citus_table_size('customer_copy_hash'),
citus_table_size('supplier');
citus_table_size('customer_copy_hash');
citus_table_size | citus_table_size | citus_table_size
---------------------------------------------------------------------
548864 | 548864 | 655360
548864 | 548864 | 548864
(1 row)
CREATE INDEX index_1 on customer_copy_hash(c_custkey);

View File

@ -58,7 +58,7 @@ SELECT citus_total_relation_size('customer_copy_hash');
-- Make sure we can get multiple sizes in a single query
SELECT citus_table_size('customer_copy_hash'),
citus_table_size('customer_copy_hash'),
citus_table_size('supplier');
citus_table_size('customer_copy_hash');
CREATE INDEX index_1 on customer_copy_hash(c_custkey);
VACUUM (FULL) customer_copy_hash;