make multi_reference_table test more stable

pull/1549/head
Brian Cloutier 2017-08-08 19:49:47 +03:00 committed by Brian Cloutier
parent 3fc87a7a29
commit c854d51cd8
2 changed files with 5 additions and 5 deletions

View File

@ -12,14 +12,14 @@ NOTICE: Copying data from local table...
-- see that partkey is NULL
SELECT
partmethod, (partkey IS NULL) as partkeyisnull, colocationid, repmodel
partmethod, (partkey IS NULL) as partkeyisnull, repmodel
FROM
pg_dist_partition
WHERE
logicalrelid = 'reference_table_test'::regclass;
partmethod | partkeyisnull | colocationid | repmodel
------------+---------------+--------------+----------
n | t | 1 | t
partmethod | partkeyisnull | repmodel
------------+---------------+----------
n | t | t
(1 row)
-- now see that shard min/max values are NULL

View File

@ -10,7 +10,7 @@ SELECT create_reference_table('reference_table_test');
-- see that partkey is NULL
SELECT
partmethod, (partkey IS NULL) as partkeyisnull, colocationid, repmodel
partmethod, (partkey IS NULL) as partkeyisnull, repmodel
FROM
pg_dist_partition
WHERE