From 47409f3af127cdeceb39b03790cf9a76ce56f9a0 Mon Sep 17 00:00:00 2001 From: "Mateusz \"Serafin\" Gajewski" Date: Tue, 4 Jul 2023 13:53:45 +0200 Subject: [PATCH] Do not use hive.default as default catalog in product tests --- .../conf/tempto/tempto-configuration-for-docker-tls.yaml | 2 +- .../src/main/resources/tempto-configuration.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/trino-product-tests-launcher/src/main/resources/docker/presto-product-tests/conf/tempto/tempto-configuration-for-docker-tls.yaml b/testing/trino-product-tests-launcher/src/main/resources/docker/presto-product-tests/conf/tempto/tempto-configuration-for-docker-tls.yaml index 07e26e05f37b..5f856255bd85 100644 --- a/testing/trino-product-tests-launcher/src/main/resources/docker/presto-product-tests/conf/tempto/tempto-configuration-for-docker-tls.yaml +++ b/testing/trino-product-tests-launcher/src/main/resources/docker/presto-product-tests/conf/tempto/tempto-configuration-for-docker-tls.yaml @@ -5,7 +5,7 @@ databases: http_port: 8080 https_port: ${databases.presto.port} server_address: https://${databases.presto.host}:${databases.presto.port} - jdbc_url: "jdbc:trino://${databases.presto.host}:${databases.presto.port}/hive/${databases.hive.schema}?\ + jdbc_url: "jdbc:trino://${databases.presto.host}:${databases.presto.port}?\ SSL=true&\ SSLTrustStorePath=${databases.presto.https_keystore_path}&\ SSLTrustStorePassword=${databases.presto.https_keystore_password}" diff --git a/testing/trino-product-tests/src/main/resources/tempto-configuration.yaml b/testing/trino-product-tests/src/main/resources/tempto-configuration.yaml index b359aece3138..7441cd118d68 100644 --- a/testing/trino-product-tests/src/main/resources/tempto-configuration.yaml +++ b/testing/trino-product-tests/src/main/resources/tempto-configuration.yaml @@ -28,7 +28,7 @@ databases: port: 8080 server_address: http://${databases.presto.host}:${databases.presto.port} jdbc_driver_class: io.trino.jdbc.TrinoDriver - jdbc_url: jdbc:trino://${databases.presto.host}:${databases.presto.port}/hive/${databases.hive.schema} + jdbc_url: jdbc:trino://${databases.presto.host}:${databases.presto.port} jdbc_user: hive jdbc_password: "***empty***" jdbc_pooling: false