Skip to content

Commit

Permalink
[Regression] Make Query.prepareSQL(QueryBuilder) public JetBrains#1206
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac authored and SchweinchenFuntik committed Oct 23, 2021
1 parent b736893 commit dc9bdb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ abstract class AbstractQuery<T : AbstractQuery<T>>(targets: List<Table>) : Sized

override fun prepareSQL(transaction: Transaction) = prepareSQL(QueryBuilder(true))

internal abstract fun prepareSQL(builder: QueryBuilder): String
abstract fun prepareSQL(builder: QueryBuilder): String

override fun arguments() = QueryBuilder(true).let {
prepareSQL(it)
Expand Down

0 comments on commit dc9bdb8

Please sign in to comment.