enabled. Also simplify table-test SQL. (RT#59619)
column in the GROUP BY clause
- Properly support column names with symbols (e.g. single quote)
via custom accessors
+ - Fixed ::Schema::Versioned to work properly with quoting on
+ (RT#59619)
* Misc
- Refactored capability handling in Storage::DBI, allows for
{
my ($self, $rs) = @_;
- my $c = try { $rs->search({ 1, 0 })->count };
-
- return (defined $c) ? 1 : 0;
+ return try {
+ $rs->search(\'1=0')->cursor->next;
+ 1;
+ } catch {
+ 0;
+ };
}
1;