Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port changes from v0.10.2, apply patches from DuckDB core #318

Merged
merged 16 commits into from
May 17, 2024
14 changes: 7 additions & 7 deletions .github/workflows/StableDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ name: Stable Extension Distribution Pipeline
on:
pull_request:
branches:
- v0.10.1
- v0.10.2
paths-ignore:
- '**/README.md'
- 'doc/**'
push:
branches:
- v0.10.1
- v0.10.2
paths-ignore:
- '**/README.md'
- 'doc/**'
Expand All @@ -24,17 +24,17 @@ concurrency:
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].1
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].2
with:
duckdb_version: v0.10.1
duckdb_version: v0.10.2
extension_name: spatial

duckdb-stable-deploy:
name: Deploy extension binaries
needs: duckdb-stable-build
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].1
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].2
secrets: inherit
with:
duckdb_version: v0.10.1
duckdb_version: v0.10.2
extension_name: spatial
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/v0.10.1' }}
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/v0.10.2' }}
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 1388 files
4 changes: 4 additions & 0 deletions spatial/include/spatial/core/functions/scalar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ struct CoreScalarFunctions {
RegisterStHilbert(db);
RegisterStIntersects(db);
RegisterStIntersectsExtent(db);
RegisterStIsClosed(db);
RegisterStIsEmpty(db);
RegisterStLength(db);
RegisterStMakeEnvelope(db);
Expand Down Expand Up @@ -137,6 +138,9 @@ struct CoreScalarFunctions {
// ST_IntersectsExtent (&&)
static void RegisterStIntersectsExtent(DatabaseInstance &db);

// ST_IsClosed
static void RegisterStIsClosed(DatabaseInstance &db);

// ST_IsEmpty
static void RegisterStIsEmpty(DatabaseInstance &db);

Expand Down
Loading
Loading