Subject: | SQL::Parser::CREATE - split on comma bug |
In SQL::Parser::CREATE, obtaining each field by splitting on the comma
breaks where there is a comma in the field definition.
The problem arises at line SQL/Parser.pm, line 855:
for my $col(split ',',$table_element_def) {
for input like
..., my_field NUMBER(15,6), ...
I am processing CREATE TABLE statements for ORACLE.