Open
Description
Hi,
Wonder wheter it's possible to use postgresql-xl with this ef driver. It would have to be possible to provide the
'DISTRIBUTE BY' then somehow on the the table.
CREATE TABLE disttab (col1 int, col2 int, col3 text) DISTRIBUTE BY HASH(col1);
\d+ disttab
CREATE TABLE repltab (col1 int, col2 int) DISTRIBUTE BY REPLICATION;
\d+ repltab
i assume it is not yet possible, would it be possible to add this as new Feature ?