Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf44fb17

Browse files
committed
Updated DuckDB to v0.10.1, and Arrow to 15.0.2
1 parent49017a3 commitf44fb17

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

‎Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ RUN cmake -S . -B build -G Ninja -DCMAKE_INSTALL_PREFIX=/usr/local && \
8888
COPY --chown=app_user:app_user ./tls ./tls
8989

9090
# Install DuckDB CLI for troubleshooting, etc.
91-
ARG DUCKDB_VERSION="0.10.0"
91+
ARG DUCKDB_VERSION="0.10.1"
9292

9393
RUN case ${TARGETPLATFORM} in \
9494
"linux/amd64") DUCKDB_FILE=https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/duckdb_cli-linux-amd64.zip ;; \

‎Dockerfile.ci‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ RUN chmod +x /usr/local/bin/flight_sql_client
8181
COPY --chown=app_user:app_user tls tls
8282

8383
# Install DuckDB CLI for troubleshooting, etc.
84-
ARG DUCKDB_VERSION="0.10.0"
84+
ARG DUCKDB_VERSION="0.10.1"
8585

8686
RUN case ${TARGETPLATFORM} in \
8787
"linux/amd64") DUCKDB_FILE=https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/duckdb_cli-linux-amd64.zip ;; \

‎README.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ The above command will automatically mount a very small TPC-H DuckDB database fi
3737
**Note**: You can disable TLS in the container by setting environment variable:`TLS_ENABLED` to "0" (default is "1" - enabled). This is not recommended unless you are using an mTLS sidecar in Kubernetes or something similar, as it will be insecure.
3838

3939
###Optional - open a different database file
40-
When running the Docker image - you can have it run your own DuckDB database file (the database must be built with DuckDB version: 0.10.0).
40+
When running the Docker image - you can have it run your own DuckDB database file (the database must be built with DuckDB version: 0.10.1).
4141

4242
Prerequisite: DuckDB CLI
43-
Install DuckDB CLI version[0.10.0](https://github.com/duckdb/duckdb/releases/tag/v0.10.0) - and make sure the executable is on your PATH.
43+
Install DuckDB CLI version[0.10.1](https://github.com/duckdb/duckdb/releases/tag/v0.10.1) - and make sure the executable is on your PATH.
4444

4545
Platform Downloads:
46-
[Linux x86-64](https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-linux-amd64.zip)
47-
[Linux arm64 (aarch64)](https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-linux-aarch64.zip)
48-
[MacOS Universal](https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-osx-universal.zip)
46+
[Linux x86-64](https://github.com/duckdb/duckdb/releases/download/v0.10.1/duckdb_cli-linux-amd64.zip)
47+
[Linux arm64 (aarch64)](https://github.com/duckdb/duckdb/releases/download/v0.10.1/duckdb_cli-linux-aarch64.zip)
48+
[MacOS Universal](https://github.com/duckdb/duckdb/releases/download/v0.10.1/duckdb_cli-osx-universal.zip)
4949

5050
In this example, we'll generate a new TPC-H Scale Factor 1 (1GB) database file, and then run the docker image to mount it:
5151

@@ -195,7 +195,7 @@ version(): string
195195
196196
Results:
197197
version(): [
198-
"v0.10.0"
198+
"v0.10.1"
199199
]
200200
201201
Total: 1
@@ -281,7 +281,7 @@ This option allows choosing from two backends: SQLite and DuckDB. It defaults to
281281
$ FLIGHT_PASSWORD="flight_password" flight_sql_server --database-filename data/TPC-H-small.duckdb
282282
Apache Arrow version: 15.0.0
283283
WARNING - TLS is disabledfor the Flight SQL server - this is insecure.
284-
DuckDB version: v0.10.0
284+
DuckDB version: v0.10.1
285285
Running Init SQL command:
286286
SET autoinstall_known_extensions =true;
287287
Running Init SQL command:

‎requirements.txt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pandas==2.1.*
2-
duckdb==0.10.0
2+
duckdb==0.10.1
33
click==8.1.*
4-
pyarrow==15.0.0
4+
pyarrow==15.0.2
55
adbc-driver-flightsql==0.10.*
66
adbc-driver-manager==0.10.*

‎third_party/Arrow_CMakeLists.txt.in‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ExternalProject_Add(
99
arrow_project
1010
PREFIX ${CMAKE_BINARY_DIR}/third_party
1111
GIT_REPOSITORY https://github.com/apache/arrow.git
12-
GIT_TAG apache-arrow-15.0.1
12+
GIT_TAG apache-arrow-15.0.2
1313
SOURCE_SUBDIR cpp
1414
CMAKE_ARGS
1515
-DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/third_party/arrow

‎third_party/DuckDB_CMakeLists.txt.in‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ExternalProject_Add(
99
duckdb_project
1010
PREFIX ${CMAKE_BINARY_DIR}/third_party
1111
GIT_REPOSITORY https://github.com/duckdb/duckdb
12-
GIT_TAG v0.10.0
12+
GIT_TAG v0.10.1
1313
CMAKE_ARGS
1414
-DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/third_party/duckdb
1515
)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp