File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
main/java/com/clickhouse/kafka/connect/sink/db/helper
test/java/com/clickhouse/kafka/connect/sink/db/mapping Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -211,11 +211,6 @@ public Table describeTable(String tableName) {
211
211
continue ;
212
212
}
213
213
214
- if (fieldDescriptor .isSubcolumn () && fieldDescriptor .getName ().endsWith (".null" )) {
215
- LOGGER .debug ("Skipping column {} as it is a subcolumn from a Nullable" , fieldDescriptor .getName ());
216
- continue ;
217
- }
218
-
219
214
if (fieldDescriptor .hasDefault ()) {
220
215
table .hasDefaults (true );
221
216
}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public void extractNullables() {
44
44
Table table = chc .describeTable (tableName );
45
45
assertNotNull (table );
46
46
assertEquals (table .getRootColumnsList ().size (), 2 );
47
- assertEquals (table .getAllColumnsList ().size (), 2 );
47
+ assertEquals (table .getAllColumnsList ().size (), 3 );
48
48
ClickHouseTestHelpers .dropTable (chc , tableName );
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments