Skip to content

Commit

Permalink
README: Bump minimum supported PG version (#259)
Browse files Browse the repository at this point in the history
PG10 fails now:

ogr_fdw.c:1122:18: error: ‘BOOLARRAYOID’ undeclared
... and other errors
  • Loading branch information
df7cb authored Sep 9, 2024
1 parent 8d5f979 commit 22fcef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OGR is the **vector** half of the [GDAL](http://www.gdal.org/) spatial data acce

This implementation currently has the following limitations:

* **PostgreSQL 9.3 or higher.** This wrapper does not support the FDW implementations in older versions of PostgreSQL.
* **PostgreSQL 11 or higher.**
* **Limited non-spatial query restrictions are pushed down to OGR.** OGR only supports a [minimal set](https://gdal.org/user/ogr_sql_dialect.html) of SQL operators (>, <, <=, >=, =).
* **Only bounding box filters (&&) are pushed down.** Spatial filtering is possible, but only bounding boxes, and only using the && operator.
* **OGR connections every time** Rather than pooling OGR connections, each query makes (and disposes of) **two** new ones, which seems to be the largest performance drag at the moment for restricted (small) queries.
Expand Down

0 comments on commit 22fcef1

Please sign in to comment.