On line [137 of SQL::Translator::Parser::Oracle](https://github.com/dbsrgits/sql-translator/blob/master/lib/SQL/Translator/Parser/Oracle.pm#L137), the grammar rule: `drop : /drop/i WORD(s) NAME WORD(s?) ';'` fails to match if table names aren't surrounded with quotes because `WORD(s)` matches to the end and `NAME` has nothing left to match.