Revision history for SQL::Abstract
+ - Remove excess parentheses in debug SQL
- Fix parsing of foo.* in SQLA::Tree
- Fix bindtype fail when using -between with arrayrefref literals
- Add handling for NULL for -in
# FIXME - terrible name for a user facing API
sub unparse {
my ($self, $tree, $bindargs) = @_;
- $self->_parenthesis_unroll($tree);
$self->_unparse($tree, [@{$bindargs||[]}], 0);
}
return '';
}
+ $self->_parenthesis_unroll($tree);
my ($car, $cdr) = @{$tree}[0,1];
if (! defined $car or (! ref $car and ! defined $cdr) ) {