ms705 / nom-sql

Rust SQL parser written using nom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CREATE TABLE statements without a space between the table name and the column definition fail to parse

lovasoa opened this issue · comments

CREATE TABLE statements without a space between the table name and the column definition fail to parse.

Example

CREATE TABLE x(b integer);