xwb1989 / sqlparser

SQL Parser implemented in Go
Apache License 2.0
1.47k stars 238 forks source link

support current_timestamp fsp argument #45

Open Kings-gee opened 5 years ago

Kings-gee commented 5 years ago

SQL

CREATE TABLE t1 ( ts TIMESTAMP(6) DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6) );

Error

ignoring error parsing DDL 'CREATE TABLE t1 (ts TIMESTAMP(6) DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6));': syntax error at position 60

Zha-Zha commented 1 year ago

请问解决了吗