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 3dccc9e commit 41164b4Copy full SHA for 41164b4
src/main/java/org/utplsql/api/FileMapper.java
@@ -50,7 +50,7 @@ public static Array buildFileMappingArray(
50
++paramIdx, oraConn.createOracleArray(CustomTypes.UT_VARCHAR2_LIST, mapperOptions.getFilePaths().toArray()));
51
52
if (mapperOptions.getTypeMappings() == null) {
53
- callableStatement.setNull(++paramIdx, Types.ARRAY, CustomTypes.UT_KEY_VALUE_PAIR);
+ callableStatement.setNull(++paramIdx, Types.ARRAY, CustomTypes.UT_KEY_VALUE_PAIRS);
54
} else {
55
callableStatement.setArray(
56
++paramIdx, oraConn.createOracleArray(CustomTypes.UT_KEY_VALUE_PAIRS, mapperOptions.getTypeMappings().toArray()));
0 commit comments