-
Notifications
You must be signed in to change notification settings - Fork 594
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
refactor(udf): switch to the latest arrow-udf versions #16619
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
ee1a12b
refactor array arrow conversion
wangrunji0408 c37dfc7
fix usages
wangrunji0408 7ef80fe
fix unit test
wangrunji0408 c218388
fix clippy
wangrunji0408 f44db24
add missing data type
wangrunji0408 5341ee4
fix unit test
wangrunji0408 3c6e87a
fix udtf
wangrunji0408 9ff4625
remove java udf sdk
wangrunji0408 19b036c
move java udf example to e2e_test
wangrunji0408 2526b40
remove python udf sdk
wangrunji0408 8ea1b1b
remove risingwave_udf crate
wangrunji0408 a94ee09
migrate to arrow-udf-flight
wangrunji0408 d8805eb
Merge branch 'wrj/arrow' into wrj/udf
wangrunji0408 b1f3cf6
introduce NewUdfArrowConvert
wangrunji0408 2abf399
Merge branch 'wrj/arrow' into wrj/udf
wangrunji0408 2b7e3c3
fix arrow conversion for the new UDF protocol
wangrunji0408 7c8bce9
update python udf test
wangrunji0408 b66a4f6
use arrow-udf-flight v0.1
wangrunji0408 61667fc
revert dns resolution
wangrunji0408 d94df06
fix clippy
wangrunji0408 ec49c16
Merge commit '0422eab57aa522daf0e7a9618a9a51c35924b8b2' into wrj/arrow
wangrunji0408 3e17bcd
Merge branch 'wrj/arrow' into wrj/udf
wangrunji0408 c7bbe2f
remove python udf sdk unit test from ci
wangrunji0408 5a786ad
fix udf test in ci
wangrunji0408 f73fb82
use java sdk from maven repository
wangrunji0408 7f46c76
Merge remote-tracking branch 'origin/main' into wrj/udf
wangrunji0408 f543906
fix e2e test
wangrunji0408 e38e2b8
fix decimal output
wangrunji0408 9b46f05
add link for backward compatibility
wangrunji0408 bdc6770
fix: handle error column
wangrunji0408 2970441
update arrow-udf-js-deno to fix decimal output
wangrunji0408 a35ac1c
fix error ui slt
wangrunji0408 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
flask | ||
waitress | ||
waitress | ||
arrow_udf==0.2.1 |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this considered a breaking change that should be notable for existing users?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is a breaking change, but only for the new version (arrow-udf v0.2). Existing users will not be affected unless they try to upgrade to the new version.