* Fixes for parsing and producing identifiers and values that need
quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
Oracle (RT#90700, RT#31034)
+ * Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
0.11020 2014-09-02
| drop
| <error>
+alter: /alter/i TABLE table_name /add/i table_constraint ';'
+ {
+ my $constraint = $item{table_constraint};
+ $constraint->{type} = $constraint->{constraint_type};
+ push @{$tables{$item{table_name}}{constraints}}, $constraint;
+ }
+
alter : /alter/i WORD /[^;]+/ ';'
{ @table_comments = () }