1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

check only whether sort is defined or not, as sort may be zero under the new query planner introduced in SQLite 3.8.0

This commit is contained in:
Kenichi Ishigaki 2013-08-27 12:14:45 +09:00
parent 5abe471ec2
commit 6458091dbc

View file

@ -46,7 +46,7 @@ for my $func (@CALL_FUNCS) {
my $num_of_keys = scalar keys %$st_status;
ok $num_of_keys, "st status: $num_of_keys indicators";
my $sort = $st_status->{sort};
ok defined $sort && $sort, "num of sort: $sort";
ok defined $sort, "num of sort: $sort";
}
}