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 31effd1 commit a2b5512Copy full SHA for a2b5512
src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java
@@ -767,6 +767,8 @@ public Object getObject(int columnIndex) throws SQLException
767
case Types.BINARY:
768
case Types.VARBINARY:
769
return getBytes(columnIndex);
770
+ case Types.ARRAY:
771
+ return getArray(columnIndex);
772
default:
773
String type = field.getPGType();
774
// if the backend doesn't know the type then coerce to String
0 commit comments