-
Notifications
You must be signed in to change notification settings - Fork 116
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
Hack 652 - https://github.com/zio/zio-sql/issues/652 #667
Conversation
@AdityaVetukuri it looks good codewise, but you need to:
|
val Log10 = FunctionDef[Double, Double](FunctionName("log10")) | ||
val Pi = Expr.FunctionCall0[Double](FunctionDef[Any, Double](FunctionName("pi"))) | ||
val BitLength = FunctionDef[String, Int](FunctionName("bit_length")) | ||
val CurrentDate = Expr.ParenlessFunctionCall0[LocalDate](FunctionName("current_date")) |
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.
Could you please place the CurrentDate alphabetically after Crc32. And along the way BitLength at the begining?
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.
Sure. Thanks for the feedback!
@AdityaVetukuri just one more small change. |
Thanks, I have signed the CLA too. |
#652