Details
-
Task
-
Status: Stalled (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
The create statement:
CREATE TABLE t1 ( |
id INT NOT NULL, |
msg VARCHAR(32) FLAG=12) |
ENGINE=CONNECT TABLE_TYPE=FIX |
PARTITION BY HASH(id) |
PARTITIONS 3;
|
returns the error message: (1911) Unknown option 'flag'
Note that can be temporarily bypassed by doing:
CREATE TABLE t1 ( |
id INT NOT NULL, |
msg VARCHAR(32) FLAG=12) |
ENGINE=CONNECT TABLE_TYPE=FIX; |
|
ALTER TABLE t1 |
PARTITION BY HASH(id) |
PARTITIONS 3;
|
Note: Partition support by CONNECT is a work in progress.