From: Dave Cramer Date: Fri, 15 Mar 2002 04:11:49 +0000 (+0000) Subject: patch from Alexey Slynko X-Git-Tag: REL7_3~1894 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2b551292932b97d6e6abccd013884c299e0043b;p=postgresql patch from Alexey Slynko This patch solve problems with arrays in latest development JDBC driver --- diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java b/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java index dd12cda7da..d9e37035ee 100644 --- a/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java +++ b/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java @@ -767,6 +767,8 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu case Types.BINARY: case Types.VARBINARY: return getBytes(columnIndex); + case Types.ARRAY: + return getArray(columnIndex); default: String type = field.getPGType(); // if the backend doesn't know the type then coerce to String