Revision history for SQL::Abstract
+ - fix DBIC ident op expander compat wrapper to handle call as unop
+
1.90_01 - 2019-10-09
- Complete overhaul of the internals, see the SQL::Abstract::Reference
docs to understand the new implementation's affordances.
s/\A\s+//, s/\s+\Z// for $sql;
return [ $sql, @bind ];
};
- $opt{expand_op}{ident} = sub {
+ $opt{expand_op}{ident} = __PACKAGE__->make_unop_expander(sub {
my ($self, undef, $body) = @_;
$body = $body->from if Scalar::Util::blessed($body);
$self->_expand_ident(ident => $body);
- };
+ });
}
}