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:
parent
2053415c76
commit
814ebddfa2
7 changed files with 362 additions and 103 deletions
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue