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.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Comment |
[ Hi Sergei, Can you have a look at MDEV-6297. It is currently unassigned. Thanks, Olivier ] |
Resolution | Duplicate [ 3 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | defaullt [ 41713 ] | MariaDB v2 [ 43733 ] |
Comment |
[ This is a duplicate of |
Assignee | Sergei Golubchik [ serg ] | |
Resolution | Duplicate [ 3 ] | |
Status | Closed [ 6 ] | Stalled [ 10000 ] |
Fix Version/s | 10.1 [ 16100 ] |
Workflow | MariaDB v2 [ 43733 ] | MariaDB v3 [ 64764 ] |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.1 [ 16100 ] |
Fix Version/s | 10.2 [ 14601 ] |
Fix Version/s | 10.3 [ 22126 ] |
Fix Version/s | 10.3 [ 22126 ] |
Affects Version/s | 10.0.12 [ 15201 ] | |
Issue Type | Bug [ 1 ] | Task [ 3 ] |
Link |
This issue duplicates |
Link |
This issue duplicates |
Workflow | MariaDB v3 [ 64764 ] | MariaDB v4 [ 131635 ] |
There are many more bugs concerning the partition engine, such as the lost of the CONNECTION option and wrong impossible where clauses.