-
Notifications
You must be signed in to change notification settings - Fork 163
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
[FEAT] base64_encode and base64_decode operations #3048
base: main
Are you sure you want to change the base?
Conversation
CodSpeed Performance ReportMerging #3048 will not alter performanceComparing Summary
|
|
||
pub(super) struct Base64DecodeEvaluate {} | ||
|
||
impl FunctionEvaluator for Base64DecodeEvaluate { |
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.
we've been moving away from FunctionEvaluator
and instead implementing new functions using the daft-functions
crate. Here's a merged PR of migrating from the old to the new.
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.
Thanks for the review, let me check it.
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.
@universalmind303 I have submit #3101 to move utf8 from daft-dsl to dsl-functions. Then I will add those two expressions to dsl-functions. Hopefully, you have time to review it.
We should also support encoding binary arrays -> utf8 as base64 and also decode utf8 -> binary since that is the most common use I see for base64! |
Add standard base64 encode/decode supports.