ms705 / nom-sql

Rust SQL parser written using nom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mysql table options can be written in any order, and be separated by a comma

lovasoa opened this issue · comments

MySQL table options can be written in any order, and be separated by a comma.

Example

CREATE TABLE t(x integer) AUTO_INCREMENT=1,ENGINE=,KEY_BLOCK_SIZE=8;