fix multi_mx_create_table test

pull/3900/head
Sait Talha Nisanci 2020-06-10 12:46:07 +03:00
parent 76c7b3d1c6
commit c5c9ec288f
2 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,9 @@
#include "distributed/hash_helpers.h"
#include "executor/executor.h"
#include "foreign/foreign.h"
#if PG_VERSION_NUM >= PG_VERSION_13
#include "tcop/cmdtag.h"
#endif
#include "libpq/libpq.h"
#include "libpq/pqformat.h"
#include "nodes/makefuncs.h"

View File

@ -261,10 +261,9 @@ CREATE TABLE lineitem_mx (
l_shipmode char(10) not null,
l_comment varchar(44) not null,
PRIMARY KEY(l_orderkey, l_linenumber) );
SET citus.shard_count TO 16;
SELECT create_distributed_table('lineitem_mx', 'l_orderkey');
-- SET citus.shard_count TO 16;
CREATE INDEX lineitem_mx_time_index ON lineitem_mx (l_shipdate);
CREATE TABLE orders_mx (