Skip to content

Commit 5393d6d

Browse files
fix expression visitor
1 parent c1723e4 commit 5393d6d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ktorm-support-postgresql/src/main/kotlin/org/ktorm/support/postgresql/PostgreSqlDialect.kt

+4-2
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ public open class PostgreSqlExpressionVisitor : SqlExpressionVisitor() {
325325
table = table,
326326
assignments = assignments,
327327
conflictColumns = conflictColumns,
328-
updateAssignments = updateAssignments
328+
updateAssignments = updateAssignments,
329+
returningColumns = returningColumns
329330
)
330331
}
331332
}
@@ -350,7 +351,8 @@ public open class PostgreSqlExpressionVisitor : SqlExpressionVisitor() {
350351
table = table,
351352
assignments = assignments,
352353
conflictColumns = conflictColumns,
353-
updateAssignments = updateAssignments
354+
updateAssignments = updateAssignments,
355+
returningColumns = returningColumns
354356
)
355357
}
356358
}

0 commit comments

Comments
 (0)