mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
use rtree_i32 for better compatibility (regardless of slight errors introduced in sqlite 3.7.13)
This commit is contained in:
parent
0ed20d2962
commit
30d232ac61
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ my $dbh = connect_ok( RaiseError => 1 );
|
|||
# create R* Tree table
|
||||
$dbh->do(<<"") or die DBI::errstr;
|
||||
CREATE VIRTUAL TABLE try_rtree
|
||||
USING rtree(id, minX, maxX, minY, maxY);
|
||||
USING rtree_i32(id, minX, maxX, minY, maxY);
|
||||
|
||||
# populate it
|
||||
my $insert_sth = $dbh->prepare(<<"") or die DBI::errstr;
|
||||
|
|
Loading…
Add table
Reference in a new issue