Skip to content

Commit a62e73c

Browse files
authored
Merge pull request duckdb#310 from Maxxen/funcs
Refactor to untyped geometry representation
2 parents e7987ff + 0c972d9 commit a62e73c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1654
-1759
lines changed

duckdb

Submodule duckdb updated 304 files

spatial/include/spatial/core/functions/scalar.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ struct CoreScalarFunctions {
3333
RegisterStHilbert(db);
3434
RegisterStIntersects(db);
3535
RegisterStIntersectsExtent(db);
36+
RegisterStIsClosed(db);
3637
RegisterStIsEmpty(db);
3738
RegisterStLength(db);
3839
RegisterStMakeEnvelope(db);
@@ -137,6 +138,9 @@ struct CoreScalarFunctions {
137138
// ST_IntersectsExtent (&&)
138139
static void RegisterStIntersectsExtent(DatabaseInstance &db);
139140

141+
// ST_IsClosed
142+
static void RegisterStIsClosed(DatabaseInstance &db);
143+
140144
// ST_IsEmpty
141145
static void RegisterStIsEmpty(DatabaseInstance &db);
142146

0 commit comments

Comments
 (0)