forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into arrow_support_large_offsets
- Loading branch information
Showing
81 changed files
with
1,722 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/spatial/src/spatial/gdal/functions/st_write.cpp b/spatial/src/spatial/gdal/functions/st_write.cpp | ||
index 36a71da..15ebcf4 100644 | ||
--- a/spatial/src/spatial/gdal/functions/st_write.cpp | ||
+++ b/spatial/src/spatial/gdal/functions/st_write.cpp | ||
@@ -55,8 +55,8 @@ struct GlobalState : public GlobalFunctionData { | ||
//===--------------------------------------------------------------------===// | ||
// Bind | ||
//===--------------------------------------------------------------------===// | ||
-static unique_ptr<FunctionData> Bind(ClientContext &context, CopyInfo &info, vector<string> &names, | ||
- vector<LogicalType> &sql_types) { | ||
+static unique_ptr<FunctionData> Bind(ClientContext &context, const CopyInfo &info, const vector<string> &names, | ||
+ const vector<LogicalType> &sql_types) { | ||
|
||
GdalFileHandler::SetLocalClientContext(context); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Create Documentation issue for the Needs Documentation label | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.DUCKDBLABS_BOT_TOKEN }} | ||
TITLE_PREFIX: "duckdb/#${{ github.event.issue.number }}]" | ||
PUBLIC_ISSUE_TITLE: ${{ github.event.issue.title }} | ||
|
||
jobs: | ||
create_documentation_issue: | ||
if: github.event.label.name == 'Needs Documentation' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get mirror issue number | ||
run: | | ||
gh issue list --repo duckdb/duckdb-web --json title,number --jq ".[] | select(.title | startswith(\"${TITLE_PREFIX}\")).number" > mirror_issue_number.txt | ||
echo "MIRROR_ISSUE_NUMBER=$(cat mirror_issue_number.txt)" >> ${GITHUB_ENV} | ||
- name: Print whether mirror issue exists | ||
run: | | ||
if [ "${MIRROR_ISSUE_NUMBER}" == "" ]; then | ||
echo "Mirror issue with title prefix '${TITLE_PREFIX}' does not exist yet" | ||
else | ||
echo "Mirror issue with title prefix '${TITLE_PREFIX}' exists with number ${MIRROR_ISSUE_NUMBER}" | ||
fi | ||
- name: Create mirror issue if it does not yet exist | ||
run: | | ||
if [ "${MIRROR_ISSUE_NUMBER}" == "" ]; then | ||
gh issue create --repo duckdb/duckdb-web --title "${TITLE_PREFIX} - ${PUBLIC_ISSUE_TITLE} needs documentation" --body "See https://github.com/duckdb/duckdb/issues/${{ github.event.issue.number }}" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.