Skip to content

Commit 39b6bcc

Browse files
fix: fix sql string in connection list query builder (#16957)
1 parent e3fbd24 commit 39b6bcc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airbyte-data/src/main/kotlin/io/airbyte/data/services/impls/jooq/ConnectionServiceJooqImpl.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2235,11 +2235,12 @@ class ConnectionServiceJooqImpl
22352235
""".trimIndent(),
22362236
)
22372237
if (connectionId != null) {
2238-
sql.append(" AND c.id != ?")
2238+
sql.append(" AND c.id != ? ")
22392239
}
22402240

22412241
sql.append(
22422242
"""
2243+
22432244
GROUP BY
22442245
c.namespace_definition,
22452246
c.namespace_format,

0 commit comments

Comments
 (0)