changeset 233:c1bbb542617d embedded

Compilation fix and new release
author Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
date Fri, 18 May 2018 16:15:34 +0200 (2018-05-18)
parents 3c3345a298f2
children d27f4ad1ca91
files pom.xml src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 
 	<groupId>monetdb</groupId>
 	<artifactId>monetdb-jdbc-new</artifactId>
-	<version>2.35</version>
+	<version>2.36</version>
 	<name>MonetDB JDBC new</name>
 	<description>MonetDB Adapted JDBC driver for embedded connection</description>
 	<url>https://www.monetdb.org</url>
--- a/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
+++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
@@ -643,7 +643,7 @@ public class MonetStatement extends Mone
 		/* the generated key should be an integer, because (wait for it) other 
 		 * frameworks such as spring expect this. */
 		types[0] = "BIGINT";
-		jdbcTypes[0] = MonetDriver.getJavaType(types[0]);
+		jdbcTypes[0] = MonetDriver.getJdbcSQLType(types[0]);
 
 		results = new Object[1];
 		results[0] = new long[1];