in reply to (OT) Yapp rules and resolving reduce/reduce errors
column_ident table_ident '.' ident database_ident '.' ident ident '.' ident
column_ident table_ident '.' ident ident '.' ident
pc88mxer's solution to defer identifier validation until later is sound, but here's one that does it during parsing:
database_ident: ident ; table_ident: ident '.' ident | ident ; column_ident: ident '.' ident '.' ident | ident '.' ident | ident ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: (OT) Yapp rules and resolving reduce/reduce errors
by dragonchild (Archbishop) on Apr 10, 2008 at 23:55 UTC | |
by ikegami (Patriarch) on Apr 11, 2008 at 00:08 UTC |