ms705 / nom-sql

Rust SQL parser written using nom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support partition selection with PARTITION option

soulstompp opened this issue · comments

MySQL supports the ability to choose which partitions of a given table will be selected from/changed. We will want to be able to parse this when they show up anywhere in for DELETE, INSERT, REPLACE, SELECT and UPDATE, so I believe it will work best to parse this within the table_reference and schema_table_reference parsers.