Add support for PostGIS Geometry columns

This is primarily an experiment. At this point I'm getting back the
Geometry as a GeoJSON blob, which is pretty massive progress, but I'm
still not able to manipulate the data directly the way I'd like.
This commit is contained in:
Eli Ribble 2026-05-06 20:36:10 +00:00
parent 2053415c76
commit 814ebddfa2
No known key found for this signature in database
7 changed files with 362 additions and 103 deletions

View file

@ -77,6 +77,9 @@ type ColumnInterval = jet.ColumnInterval
// IntervalColumn creates named interval column
var IntervalColumn = jet.IntervalColumn
type ColumnGeometry = jet.ColumnGeometry
var GeometryColumn = jet.GeometryColumn
// ColumnDateRange is interface of SQL date range column
type ColumnDateRange = jet.ColumnRange[DateExpression]
@ -112,3 +115,4 @@ type ColumnInt8Range jet.ColumnRange[jet.Int8Expression]
// Int8RangeColumn creates named range with range column
var Int8RangeColumn = jet.RangeColumn[jet.Int8Expression]