Changeset: 561dfb79e817 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=561dfb79e817
Modified Files:
java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
Branch: Jun2016
Log Message:
Undo making getClassForType(int type) a private method.
It appears to be called from MonetPreparedStatement so can't be private.
diffs (19 lines):
diff --git a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
--- a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
+++ b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
@@ -2002,13 +2002,13 @@ public class MonetResultSet extends Mone
}
/**
- * Internal Helper method to support the getObject and
+ * Helper method to support the getObject and
* ResultsetMetaData.getColumnClassName JDBC methods.
*
* @param type a value from java.sql.Types
* @return a Class object from which an instance would be returned
*/
- private static Class<?> getClassForType(int type) {
+ static Class<?> getClassForType(int type) {
/**
* This switch returns the types as objects according to table
B-3 from
* Oracle's JDBC specification 4.1
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list