Revision history for SQL::Abstract
- Fix parsing of NOT EXISTS
+ - Fix over-eager parenthesis unrolling
- Fix deep recursion warnings while parsing obnoxiously long sql statements
- Fix incorrect comparison of malformed lists
return '';
}
+ # FIXME - needs a config switch to disable
$self->_parenthesis_unroll($tree);
+
my ($car, $cdr) = @{$tree}[0,1];
if (! defined $car or (! ref $car and ! defined $cdr) ) {
my $self = shift;
my $ast = shift;
- #return if $self->parenthesis_significant;
return unless (ref $ast and ref $ast->[1]);
my $changes;
$changes = 0;
for my $child (@{$ast->[1]}) {
+
# the current node in this loop is *always* a PAREN
if (! ref $child or ! @$child or $child->[0] ne 'PAREN') {
push @children, $child;
$changes++;
}
- # only one element in the parenthesis which is a binary op
- # and has exactly two grandchildren
+ # an AND/OR expression with only one binop in the parenthesis
+ # with exactly two grandchildren
# the only time when we can *not* unroll this is when both
# the parent and the child are mathops (in which case we'll
# break precedence) or when the child is BETWEEN (special
elsif (
@{$child->[1]} == 1
and
+ ($ast->[0] eq 'AND' or $ast->[0] eq 'OR')
+ and
$child->[1][0][0] =~ SQL::Abstract::Tree::_binary_op_re()
and
$child->[1][0][0] ne 'BETWEEN'
"SELECT * FROM lolz WHERE ( foo.a =1 ) and foo.b LIKE 'station'",
"SELECT [screen].[id], [screen].[name], [screen].[section_id], [screen].[xtype] FROM [users_roles] [me] JOIN [roles] [role] ON [role].[id] = [me].[role_id] JOIN [roles_permissions] [role_permissions] ON [role_permissions].[role_id] = [role].[id] JOIN [permissions] [permission] ON [permission].[id] = [role_permissions].[permission_id] JOIN [permissionscreens] [permission_screens] ON [permission_screens].[permission_id] = [permission].[id] JOIN [screens] [screen] ON [screen].[id] = [permission_screens].[screen_id] WHERE ( [me].[user_id] = ? ) GROUP BY [screen].[id], [screen].[name], [screen].[section_id], [screen].[xtype]",
"SELECT * FROM foo WHERE NOT EXISTS (SELECT bar FROM baz)",
+ "SELECT * FROM (SELECT SUM (CASE WHEN me.artist = 'foo' THEN 1 ELSE 0 END AS artist_sum) FROM foobar) WHERE foo.a = 1 and foo.b LIKE 'station'"
);
for (@sql) {
}
# delete this test when mysql_functions gets implemented
-my $sql = 'SELECT COUNT( * ) FROM foo';
+my $sql = 'SELECT COUNT( * ), SUM( blah ) FROM foo';
is($sqlat->format($sql), $sql, 'Roundtripping to mysql-compatible paren. syntax');
lives_ok { $sqlat->unparse( $sqlat->parse( <<'EOS' ) ) } 'Able to parse/unparse grossly malformed sql';