Hi,
Is it possible to make multiple insertions citus 5.1?
I'm trying INSERT with this code:
CREATE TABLE test(
id INT,
valor INT,
PRIMARY KEY(id)
);
SELECT * FROM master_create_distributed_table('test','id','hash')
INSERT INTO test VALUES (1,1),(2,2),(3,3),(4,4)....
-> ERROR: cannot perform distributed planning for the given modification
-> DETAIL: Multi-row INSERTs to distributed tables are not supported.
Is there any way to insert multiple values in a distributed table with a single query POSTGRESQL?
Regadrs,
Mario ;)