Skip to content

Commit

Permalink
Updated to dev build of DuckDB (which fixes .ipp files not being inst…
Browse files Browse the repository at this point in the history
…alled). Will not ship this release, just wanted to get a good build.
  • Loading branch information
prmoore77 committed May 23, 2024
1 parent e5a6d86 commit 65777f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ target_link_libraries(duckdb
"${DUCKDB_INSTALL_DIR}/lib/libduckdb_re2.a"
"${DUCKDB_INSTALL_DIR}/lib/libduckdb_skiplistlib.a"
"${DUCKDB_INSTALL_DIR}/lib/libduckdb_utf8proc.a"
"${DUCKDB_INSTALL_DIR}/lib/libduckdb_yyjson.a"
"${DUCKDB_INSTALL_DIR}/lib/libparquet_extension.a"
)

Expand Down
2 changes: 1 addition & 1 deletion src/duckdb/duckdb_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ WHERE constraint_type = 'FOREIGN KEY') WHERE )" +
FieldVector parameter_fields;
parameter_fields.reserve(parameter_count);

std::shared_ptr<duckdb::PreparedStatementData> parameter_data = stmt->data;
duckdb::shared_ptr<duckdb::PreparedStatementData> parameter_data = stmt->data;
auto bind_parameter_map = parameter_data->value_map;

for (id_t i = 0; i < parameter_count; i++) {
Expand Down
2 changes: 1 addition & 1 deletion third_party/DuckDB_CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ExternalProject_Add(
duckdb_project
PREFIX ${CMAKE_BINARY_DIR}/third_party
GIT_REPOSITORY https://github.com/duckdb/duckdb
GIT_TAG v0.10.3
GIT_TAG caef2cd0c7bac1b2195451181844614c984f835a
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/third_party/duckdb
)

0 comments on commit 65777f2

Please sign in to comment.