view tests/javaspecific.md @ 899:cccaeb65a5d6

Extend Makefile with target: jre21jars Note this requires that your OS has jdk21 installed and be the default jvm.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 30 May 2024 13:08:03 +0200 (11 months ago)
parents 4d80fd66541d
children 778959b2e0a4
line wrap: on
line source
# Java-specific tests

Test settings that are only in monetdb-java.

```test
ONLY jdbc
EXPECT so_timeout=0
SET so_timeout=42
EXPECT so_timeout=42
ACCEPT monetdb://?so_timeout=99
EXPECT so_timeout=99
```

```test
ONLY jdbc
EXPECT treat_clob_as_varchar=true
SET treat_clob_as_varchar=off
EXPECT treat_clob_as_varchar=false
ACCEPT monetdb://?treat_clob_as_varchar=yes
EXPECT treat_clob_as_varchar=on
```

```test
ONLY jdbc
EXPECT treat_blob_as_binary=true
SET treat_blob_as_binary=off
EXPECT treat_blob_as_binary=false
ACCEPT monetdb://?treat_blob_as_binary=yes
EXPECT treat_blob_as_binary=on
```