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.
1 parent bebaeb6 commit afb6092Copy full SHA for afb6092
airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/SelectQuerier.kt
@@ -143,6 +143,7 @@ class JdbcSelectQuerier(
143
val jdbcFieldType: JdbcFieldType<*> = column.type as JdbcFieldType<*>
144
try {
145
if (column is NonEmittedField) {
146
+ @Suppress("UNCHECKED_CAST")
147
resultRow.nonEmittedData[column.id] =
148
FieldValueEncoder(
149
jdbcFieldType.jdbcGetter.get(rs!!, colIdx),
0 commit comments