Skip to content

Commit 5eeb1f0

Browse files
authored
bundle core_functions extension (#437)
1 parent 2a2a562 commit 5eeb1f0

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

crates/libduckdb-sys/build.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ mod build_bundled {
125125

126126
let mut cfg = cc::Build::new();
127127

128+
add_extension(&mut cfg, &manifest, "core_functions", &mut cpp_files, &mut include_dirs);
129+
128130
#[cfg(feature = "parquet")]
129131
add_extension(&mut cfg, &manifest, "parquet", &mut cpp_files, &mut include_dirs);
130132

crates/libduckdb-sys/duckdb.tar.gz

159 KB
Binary file not shown.

crates/libduckdb-sys/update_sources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# List of extensions' sources to grab. Technically, these sources will be compiled
1818
# but not included in the final build unless they're explicitly enabled.
19-
EXTENSIONS = ["parquet", "json"]
19+
EXTENSIONS = ["core_functions", "parquet", "json"]
2020

2121
# Clear the duckdb directory
2222
try:

0 commit comments

Comments
 (0)