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:
parent
5abe471ec2
commit
6458091dbc
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue