Skip to content

Commit 334f58f

Browse files
committed
fix the integration test
1 parent 1dcb098 commit 334f58f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/MappingRelationalConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ public Object writeValue(@Nullable Object value, TypeInformation<?> type) {
690690
: getConversions().getCustomWriteTarget(type.getType());
691691

692692
if (customWriteTarget.isPresent()) {
693-
return getConversionService().convert(value, customWriteTarget.get());
693+
return getPotentiallyConvertedSimpleWrite(getConversionService().convert(value, customWriteTarget.get()));
694694
}
695695

696696
if (TypeInformation.OBJECT != type) {

0 commit comments

Comments
 (0)