Skip to content

Commit

Permalink
[Fix] Support NULL conversion always.
Browse files Browse the repository at this point in the history
  • Loading branch information
meistermeier committed Jan 5, 2023
1 parent 9c0c324 commit 4356985
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@
class DriverTypeConverter implements TypeConverter {

private static final TypeSystem typeSystem = TypeSystem.getDefault();
private static final List<?> SUPPORTED_SOURCE_VALUES_TYPES = List.of(typeSystem.LIST());
private static final List<?> SUPPORTED_SOURCE_VALUES_TYPES = List.of(typeSystem.LIST(), typeSystem.NULL());

private static final Map<Class<?>, DriverTypeConversion> BASIC_CONVERSIONS = Map.of(
Long.class, conversion(Value::asObject, Long.class),
Expand Down

0 comments on commit 4356985

Please sign in to comment.