-
Notifications
You must be signed in to change notification settings - Fork 91
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
Support Datetime function LOCAL TIME #636
Conversation
…model.jpql.expression.impl package. This file establishes the groundwork for implementing JPQL expressions for the LocalTime type within the Kotlin JDSL query model.
…meSerializer class. This class implements the JpqlSerializer interface for the JpqlLocalTime type. The serialize method is customized to handle the serialization of JpqlLocalTime instances, producing the corresponding JPQL expression "LOCAL TIME".
…ocalTime expression, and can be used to handle LocalTime expressions in Kotlin-Jdsl.
dsl/jpql/src/main/kotlin/com/linecorp/kotlinjdsl/dsl/jpql/Jpql.kt
Outdated
Show resolved
Hide resolved
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #636 +/- ##
===========================================
- Coverage 91.97% 91.96% -0.02%
===========================================
Files 297 299 +2
Lines 3215 3222 +7
Branches 195 195
===========================================
+ Hits 2957 2963 +6
- Misses 204 205 +1
Partials 54 54 ☔ View full report in Codecov by Sentry. |
Co-authored-by: Hyunsik Kang <[email protected]>
...model/jpql/src/main/kotlin/com/linecorp/kotlinjdsl/querymodel/jpql/expression/Expressions.kt
Outdated
Show resolved
Hide resolved
Please change the base branch from main to develop. |
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 your help!
Motivation
LOCAL TIME
in Kotlin-JDSL.Modifications
LOCAL TIME
.LOCAL TIME
.Commit Convention Rule
commit type
please describe it on the Pull RequestResult
LOCAL TIME
is created.Closes