[MCOL-264] DDL parser doesn't support space instead of equals in table options Created: 2016-08-16 Updated: 2016-09-13 Resolved: 2016-09-13 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | DDLProc |
| Affects Version/s: | None |
| Fix Version/s: | 1.0.3 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Andrew Hutchings (Inactive) | Assignee: | Daniel Lee (Inactive) |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Sprint: | 1.0.3 |
| Description |
|
The ddl.yy file doesn't support table options without '='. For example this should work but generates an error: CREATE TABLE t1 (a int, b int) ENGINE COLUMNSTORE; |
| Comments |
| Comment by Andrew Hutchings (Inactive) [ 2016-08-16 ] | ||||
|
I have a patch for this ready | ||||
| Comment by Andrew Hutchings (Inactive) [ 2016-08-16 ] | ||||
|
Created pull request with fix: | ||||
| Comment by David Hall (Inactive) [ 2016-09-02 ] | ||||
|
Test then close | ||||
| Comment by Daniel Lee (Inactive) [ 2016-09-13 ] | ||||
|
Build verified: mscadmin> getsoft Name : mariadb-columnstore-platform MariaDB [mytest]> create table t1 (c1 int, c2 char(25)) engine columnstore; MariaDB [mytest]> show create table t1;
------
------ |