# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1743685293 -7200 # Node ID f90d811e97ebefb333a292aef86d9a8b392aff26 # Parent 0fce9f209457c1c5fbc93f0b925bf8c217bbc4a1 Adjust getTableTypes() test for new table type: LOCAL TEMPORARY VIEW, added in 11.53.4 (Mar2025-SP1) diff --git a/tests/JDBC_API_Tester.java b/tests/JDBC_API_Tester.java --- a/tests/JDBC_API_Tester.java +++ b/tests/JDBC_API_Tester.java @@ -5577,7 +5577,8 @@ public final class JDBC_API_Tester { String tt = rs2.getString(1); // the STREAM TABLE type is REMOVED in post Oct2020 releases, so filter it out for a stable output on all releases // the UNLOGGED TABLE type is ADDED in post Jan2022 releases, so filter it out for a stable output on all releases - if (! ("STREAM TABLE".equals(tt) || "UNLOGGED TABLE".equals(tt)) ) + // the LOCAL TEMPORARY VIEW type is ADDED in 11.53.4 (Mar2025-SP1) releases, filter it out for a stable output on all releases + if (! ("STREAM TABLE".equals(tt) || "UNLOGGED TABLE".equals(tt) || "LOCAL TEMPORARY VIEW".equals(tt)) ) sb.append(tt).append("\n"); } rs2.close();