forked from duckdb/duckdb-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
matt/feat/support-scalar-udfs #1
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* support LargeUtf8 * lint * fix tests * Fix tests check_generic_byte_roundtrip * fix test * fix clippy
* Update Rust to v1.0.0 * Remove define again * Update crates/libduckdb-sys/build.rs Co-authored-by: Murali S <39963273+muralisoundararajan@users.noreply.github.com> * Update build.rs * Remove patch again * Disable Windows for now --------- Co-authored-by: Murali S <39963273+muralisoundararajan@users.noreply.github.com>
* extract duckdb archive in the out dir provided * don't delete source files * fix header location
* Remove HTTPFS, try to re-enable Windows test * Fix vtab types * Re-generate bindgen
* Enforce call_width in rustfmt.toml * Move core vector, logical_types, chunk into a seperate module
…#360) * Add custom user agent config * add test * run formatter
* add time option to satisfy clippy * attempt to satisfy clippy
* Set nulls for all possible arrays * set nulls for all possible array to vectors * add more set nulls * wip * only change flat vector * Revert "only change flat vector" This reverts commit 90c9d75. * add list vector nulls * add tests to cover set_nulls * fix test * fix clippy * clippy --------- Co-authored-by: peasee <98815791+peasee@users.noreply.github.com>
…uckdb#374) * add support of fixedsizebinary, duration, interval support in arrow * chore: Cargo fmt * fix: clippy::expect-fun-call --------- Co-authored-by: peasee <98815791+peasee@users.noreply.github.com>
* streaming arrow (duckdb#3) * streaming * remove invalid schema assign * use ArrowStream type to represent streaming * clippy * doc * import * typo * export arrow stream * fix: Missing semicolon in docs test --------- Co-authored-by: peasee <98815791+peasee@users.noreply.github.com>
Initial experimental(!) implementation of loadable extensions with C extension API See duckdb/duckdb#12682 for more info on the DuckDB C extension API --------- Co-authored-by: martin <martincharles07@gmail.com>
Bump version of loadable-macros to v0.1.3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
LargeUtf8
. (Support Arrow typeLargeUtf8
. duckdb/duckdb-rs#341)OUT_DIR
(fix: don't write files outside ofOUT_DIR
duckdb/duckdb-rs#347)LogicalType
andDataChunk
to haveHandle
suffix (RenameLogicalType
andDataChunk
to haveHandle
suffix duckdb/duckdb-rs#361)