-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Move levenshtein, uuid, overlay to datafusion-functions #9760
Conversation
…ailable feature in DataFusion and building with nightly may not be a good recommendation when getting started.
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.
Thank you @Omega359 -- as always this looks great 🙏
@@ -75,6 +75,8 @@ log = { workspace = true } | |||
md-5 = { version = "^0.10.0", optional = true } | |||
regex = { version = "1.8", optional = true } | |||
sha2 = { version = "^0.10.1", optional = true } | |||
uuid = { version = "1.7", features = ["v4"] } |
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.
I think technically this could be an optional depdendece (on string expressions) but since datafusion-core relies on uuid too. I'll try and clean it up as a follow on
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.
@@ -660,11 +660,11 @@ enum ScalarFunction { | |||
// 118 was ToTimestampNanos | |||
// 119 was ArrayIntersect | |||
// 120 was ArrayUnion | |||
OverLay = 121; | |||
// 121 was OverLay |
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.
wow we are pretty close to finishing this list 🤯
Which issue does this PR close?
Closes #9758
Rationale for this change
Function migration.
What changes are included in this PR?
Code, tests.
Are these changes tested?
Yes
Are there any user-facing changes?
No