Skip to content

Commit

Permalink
fix: modify version information of join/on clause 3.0.0 to 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sjnqkqh committed Jun 25, 2024
1 parent 77d9ddc commit ca20cbf
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ sealed class JpqlRenderClause : AbstractRenderContextElement(Key) {
@SinceJdsl("3.0.0")
open fun isFrom(): Boolean = false

@SinceJdsl("3.0.0")
@SinceJdsl("3.5.1")
open fun isJoin(): Boolean = false

@SinceJdsl("3.0.0")
@SinceJdsl("3.5.1")
open fun isOn(): Boolean = false

@SinceJdsl("3.0.0")
Expand Down Expand Up @@ -79,14 +79,14 @@ sealed class JpqlRenderClause : AbstractRenderContextElement(Key) {
override fun toString(): String = "From"
}

@SinceJdsl("3.5.0")
@SinceJdsl("3.5.1")
object Join : JpqlRenderClause() {
override fun isJoin(): Boolean = true

override fun toString(): String = "Join"
}

@SinceJdsl("3.5.0")
@SinceJdsl("3.5.1")
object On : JpqlRenderClause() {
override fun isOn(): Boolean = true

Expand Down

0 comments on commit ca20cbf

Please sign in to comment.