* Typedchecked ducklake queries * Display script preview error as SQL error * Fix duplication * fix replacer * Revert "fix replacer" This reverts commitc5492033c8. * Don't recompile regex every call * nit OOB * avoid potential panic * Apply suggestions from code review Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> * safety throw * Update backend/windmill-worker/src/duckdb_executor.rs Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> * Try catch individual chunks in prepareDatatableQueries Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> * format * nit comment * Revert "Try catch individual chunks in prepareDatatableQueries" This reverts commitae64a8ad27. * Correct try catch * better error messages * nit unused variable * comment * handle non describable queries * npm i --------- Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
16 lines
366 B
TOML
16 lines
366 B
TOML
[package]
|
|
name = "windmill_duckdb_ffi_internal"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.41"
|
|
duckdb = { version = "1.4.4", features = ["bundled"] }
|
|
regex = "1"
|
|
rust_decimal = "1.37.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "^1", features = ["preserve_order", "raw_value"] }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|