Add the parser support for partial index. We need to support three grammar: ```sql create table (..., key idx(a,b,c) where d > 100) create index idx on t(a,b,c) where d > 100 alter table t add index idx(a,b,c) where d > 100 ```
Add the parser support for partial index. We need to support three grammar: