-
Notifications
You must be signed in to change notification settings - Fork 18
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
v2: Implement transforms against DataFusion DataFrame, drop custom UDFs #525
Merged
Merged
Changes from 42 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
bac87e7
wip refactor to use DataFusion's DataFrame
jonmmease 9ca0f3e
Add aggregate support
jonmmease 7317fa7
Port additional transforms
jonmmease 86261d5
Port additional transforms
jonmmease e5dcc95
Port window transform
jonmmease 94d60cb
Port fold transform
jonmmease 6ec7ed1
Port impute transform
jonmmease 2b6e597
Port pivot transform
jonmmease a11839a
port timeunit
jonmmease 26f4b38
get schema from first batch
jonmmease c9a81b1
Don't require metadata match
jonmmease 2a6a49f
start porting stack
jonmmease 1e78bd5
finish stack transform port
jonmmease cb34571
Use object-store with DataFusion to load from http
jonmmease 446fa83
wip time functions
jonmmease 51a8e00
parse %Y-%m-%d in UTC like the browser
jonmmease f633095
Update timeunit transform to use datafusion operations
jonmmease c37f082
remove unused UDFs
jonmmease 87f0a26
json fallback to reqwest
jonmmease aaf2f6f
Fix timezone parsing
jonmmease 084a1f5
Fix selection_test
jonmmease 18344d8
all custom spec tests passing
jonmmease 31d6e6f
get image_comparison tests passing
jonmmease 349f662
Get all vegafusion-runtime tests passing
jonmmease 9087255
fix
jonmmease 97210c0
fix
jonmmease b47c1ce
remove more udfs
jonmmease c4d6538
remove vegafusion-datafusion-udfs, vegafusion-dataframe, and vegafusi…
jonmmease 85f7d6a
fix tests
jonmmease b2f9da5
clippy fix
jonmmease b439e99
format
jonmmease d493a18
warnings / format
jonmmease dcd8ea4
python test updates
jonmmease cc93cc4
Update to datafusion main
jonmmease e20aa13
fmt
jonmmease 8c86818
re-enable format millis test, fix substr args
jonmmease 3820b9a
Support Utf8View in json writer
jonmmease b68cdfe
fix remaining python tests
jonmmease a0bbcb1
fmt
jonmmease 9cbe638
clippy fix
jonmmease fb61ac8
fmt
jonmmease 1617f2d
work around wasm-pack error
jonmmease e0ddd5e
add call to update-pkg.js
jonmmease d39ec8a
remove some stale comments
jonmmease 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
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
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.
Keeping this VegaFusionDataset wrapper to hold the fingerprint, and to leave open possibility to add other plans types (e.g. DataFusion or substrait plans).