Skip to content

Commit

Permalink
Bump DuckDB submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Sep 26, 2023
1 parent b2849f6 commit acd521b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
26 changes: 19 additions & 7 deletions .github/config/extension_config_wasm.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,25 @@ duckdb_extension_load(visualizer DONT_LINK)

#duckdb_extension_load(httpfs DONT_LINK)

duckdb_extension_load(substrait
LOAD_TESTS DONT_LINK
GIT_URL https://github.com/duckdblabs/substrait
GIT_TAG 5d621b1d7d16fe86f8b1930870c8e6bf05bcb92a
)
################# SQLITE_SCANNER
# Static linking on windows does not properly work due to symbol collision
if (WIN32)
set(STATIC_LINK_SQLITE "DONT_LINK")
else ()
set(STATIC_LINK_SQLITE "")
endif()

duckdb_extension_load(sqlite_scanner
DONT_LINK LOAD_TESTS
${STATIC_LINK_SQLITE} LOAD_TESTS
GIT_URL https://github.com/duckdblabs/sqlite_scanner
GIT_TAG 9c38a30be2237456cdcd423d527b96c944158c77
GIT_TAG 3443b2999ae1e68a108568fd32145705237a5760
)

################# SUBSTRAIT
if (NOT WIN32)
duckdb_extension_load(substrait
LOAD_TESTS DONT_LINK
GIT_URL https://github.com/duckdblabs/substrait
GIT_TAG 5d621b1d7d16fe86f8b1930870c8e6bf05bcb92a
)
endif()
2 changes: 1 addition & 1 deletion submodules/duckdb
Submodule duckdb updated 1173 files

0 comments on commit acd521b

Please sign in to comment.