changeset 870:41095d357c2e

Branch cleanup_types has been merged into default, so enable the condition where type_digits is now returning a lower number.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 08 Feb 2024 14:20:58 +0100 (14 months ago)
parents 676725ad17b5
children 16aea99c987f
files tests/JDBC_API_Tester.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/JDBC_API_Tester.java
+++ b/tests/JDBC_API_Tester.java
@@ -753,7 +753,7 @@ final public class JDBC_API_Tester {
 		handleExecuteDDL(stmt, action, "type", "xml", "CREATE TYPE xml EXTERNAL NAME xml");
 
 		try {
-			final boolean isPostDec2023 = !(dbmsMajorVersion == 11 && dbmsMinorVersion <= 51);	// Change 51 into 49 after branch cleanup_types has been merged into default
+			final boolean isPostDec2023 = !(dbmsMajorVersion == 11 && dbmsMinorVersion <= 49);
 			DatabaseMetaData dbmd = con.getMetaData();
 
 			// inspect the catalog by use of dbmd functions
@@ -1141,7 +1141,7 @@ final public class JDBC_API_Tester {
 			"COMMENT ON FUNCTION sys.statistics() IS 'sys.statistics() function comment';");
 
 		try {
-			final boolean isPostDec2023 = !(dbmsMajorVersion == 11 && dbmsMinorVersion <= 51);	// Change 51 into 49 after branch cleanup_types has been merged into default
+			final boolean isPostDec2023 = !(dbmsMajorVersion == 11 && dbmsMinorVersion <= 49);
 			// query the catalog by calling DatabaseMetaData methods
 			compareResultSet(dbmd.getCatalogs(), "getCatalogs()",
 			"Resultset with 1 columns\n" +