We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 471bf6a + 0c06252 commit 6ac3110Copy full SHA for 6ac3110
src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin/KotlinSubQueryBuilders.kt
@@ -43,7 +43,7 @@ sealed class KotlinBaseSubQueryBuilder {
43
}
44
45
internal fun buildSelectModel(): SelectModel =
46
- selectBuilder?.build()?: throw KInvalidSQLException(Messages.getString("ERROR.28")) //$NON-NLS-1$
+ (selectBuilder?: throw KInvalidSQLException(Messages.getString("ERROR.28"))).build() //$NON-NLS-1$
47
48
49
class KotlinSubQueryBuilder : KotlinBaseSubQueryBuilder(), Buildable<SelectModel> {
0 commit comments