Skip to content

Commit

Permalink
Fix support for PostGIS-3.2+ directed linear TopoGeometries
Browse files Browse the repository at this point in the history
References #57419
Lacks testcase
  • Loading branch information
strk authored and nyalldawson committed May 18, 2024
1 parent 184a19b commit f1067f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresfeatureiterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ QString QgsPostgresFeatureIterator::whereClauseRect()
FROM %3.relation r, elems e
WHERE r.layer_id = %4
AND r.element_type = e.typ
AND r.element_id = e.id
AND ( r.element_id = e.id OR r.element_id = -e.id )
)
)SQL" )
// Should we bother with mBoundingBoxColumn ?
Expand Down

0 comments on commit f1067f1

Please sign in to comment.