changeset 661:c8f7781a414e

For blob result columns it did not return the proper class name. With getCanonicalName() it does.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 12 Oct 2022 21:20:10 +0200 (2022-10-12)
parents 7ec8d469fd0b
children ee1f3b3ff5fd
files src/main/java/org/monetdb/jdbc/MonetResultSet.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/org/monetdb/jdbc/MonetResultSet.java
+++ b/src/main/java/org/monetdb/jdbc/MonetResultSet.java
@@ -1902,7 +1902,7 @@ public class MonetResultSet
 						type = getClassForType(JdbcSQLTypes[column - 1]);
 					}
 					if (type != null) {
-						return type.getName();
+						return type.getCanonicalName();
 					}
 					throw new SQLException("column type mapping null: " + MonetDBType, "M0M03");
 				} catch (IndexOutOfBoundsException e) {