Skip to content

Commit

Permalink
port forward changes from v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen committed May 16, 2024
2 parents 988b90d + 9403beb commit fde9c69
Show file tree
Hide file tree
Showing 63 changed files with 1,660 additions and 1,765 deletions.
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' }}
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

0 comments on commit fde9c69

Please sign in to comment.