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 d41957d commit c645257Copy full SHA for c645257
src/main/java/org/springframework/data/r2dbc/dialect/PostgresDialect.java
@@ -137,7 +137,7 @@ public Class<?> getArrayType(Class<?> userType) {
137
throw new IllegalArgumentException("Unsupported array type: " + ClassUtils.getQualifiedName(userType));
138
}
139
140
- return userType.isPrimitive() ? ClassUtils.resolvePrimitiveIfNecessary(userType) : userType;
+ return ClassUtils.resolvePrimitiveIfNecessary(userType);
141
142
143
0 commit comments