1
0
Fork 0
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:
Kenichi Ishigaki 2012-09-19 15:09:13 +00:00
parent 0ed20d2962
commit 30d232ac61

View file

@ -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;