mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
small doc fix (RT-119219, spotted by Brian L. Matthews)
This commit is contained in:
parent
35f3454e7e
commit
64b0389d18
1 changed files with 2 additions and 2 deletions
|
@ -2441,13 +2441,13 @@ then query which buildings overlap or are contained within a specified region:
|
|||
|
||||
# IDs that are contained within query coordinates
|
||||
my $contained_sql = <<"";
|
||||
SELECT id FROM try_rtree
|
||||
SELECT id FROM city_buildings
|
||||
WHERE minLong >= ? AND maxLong <= ?
|
||||
AND minLat >= ? AND maxLat <= ?
|
||||
|
||||
# ... and those that overlap query coordinates
|
||||
my $overlap_sql = <<"";
|
||||
SELECT id FROM try_rtree
|
||||
SELECT id FROM city_buildings
|
||||
WHERE maxLong >= ? AND minLong <= ?
|
||||
AND maxLat >= ? AND minLat <= ?
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue