-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: refactor udfs into sqlbuiltins (#2214)
closes #2213 Some context.. After finishing up the docs in #2178, I realized that we were missing **all** of our udfs. _kdl_*, and all of our postgres specific functions._ It wasn't really obvious why either. They were in a separate part of the codebase hidden away. This pr moves all of the udfs out of sqlexec and puts them into sqlbuiltins alongside our udtfs (user defined table functions). --------- Co-authored-by: Sean Smith <scsmithr@gmail.com>
- Loading branch information
1 parent
9912c82
commit da785d9
Showing
16 changed files
with
838 additions
and
604 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,5 @@ once_cell = "1.18.0" | |
num-traits = "0.2.17" | ||
url.workspace = true | ||
strum = "0.25.0" | ||
kdl = "5.0.0-alpha.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
9 changes: 2 additions & 7 deletions
9
crates/sqlbuiltins/src/functions/scalars.rs → ...ltins/src/functions/scalars/df_scalars.rs
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.