Mercurial > hg > monetdb-java
changeset 970:f90d811e97eb default tip
Adjust getTableTypes() test for new table type: LOCAL TEMPORARY VIEW, added in 11.53.4 (Mar2025-SP1)
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 03 Apr 2025 15:01:33 +0200 (3 days ago) |
parents | 0fce9f209457 |
children | |
files | tests/JDBC_API_Tester.java |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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();