-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(query): Initial implementation of postgres-compatible number `to…
…_char` function (#16507) * num_to_char Signed-off-by: coldWater <forsaken628@gmail.com> * i32_to_char Signed-off-by: coldWater <forsaken628@gmail.com> * clean up Signed-off-by: coldWater <forsaken628@gmail.com> * register Signed-off-by: coldWater <forsaken628@gmail.com> * test Signed-off-by: coldWater <forsaken628@gmail.com> * f64_to_num_part Signed-off-by: coldWater <forsaken628@gmail.com> * test Signed-off-by: coldWater <forsaken628@gmail.com> * SG PL MI Signed-off-by: coldWater <forsaken628@gmail.com> * fix Signed-off-by: coldWater <forsaken628@gmail.com> --------- Signed-off-by: coldWater <forsaken628@gmail.com>
- Loading branch information
1 parent
bb92fdc
commit 99e039f
Showing
8 changed files
with
1,280 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
"ser" = "ser" | ||
"Ser" = "Ser" | ||
"flate" = "flate" | ||
"Tke" = "Tke" | ||
|
||
[files] | ||
extend-exclude = [ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
|
||
pub mod constants; | ||
pub mod format_diagnostic; | ||
pub mod number; | ||
pub mod prelude; | ||
|
||
mod binary_read; | ||
|
Oops, something went wrong.