From 9bb94fc1123c9b209ee803e2e0b67338ca4b8ef3 Mon Sep 17 00:00:00 2001 From: silverqx Date: Fri, 30 Aug 2024 17:34:57 +0200 Subject: [PATCH] tom/TinyUtils used off string constant --- tests/TinyUtils/src/databases.cpp | 2 +- tests/testdata_tom/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TinyUtils/src/databases.cpp b/tests/TinyUtils/src/databases.cpp index 8e0267345..26aa02485 100644 --- a/tests/TinyUtils/src/databases.cpp +++ b/tests/TinyUtils/src/databases.cpp @@ -760,7 +760,7 @@ Databases::postgresConfiguration() {prefix_, EMPTY}, {prefix_indexes, false}, // {isolation_level, sl("REPEATABLE READ")}, // Postgres default is READ COMMITTED -// {synchronous_commit, sl("off")}, // Postgres default is on +// {synchronous_commit, off}, // Postgres default is on // ConnectionFactory provides a default value for this, this is only for reference // {dont_drop, QStringList {spatial_ref_sys}}, {options_, ConfigUtils::postgresSslOptions()}, diff --git a/tests/testdata_tom/main.cpp b/tests/testdata_tom/main.cpp index d70824e50..d3c4addd5 100644 --- a/tests/testdata_tom/main.cpp +++ b/tests/testdata_tom/main.cpp @@ -160,7 +160,7 @@ std::shared_ptr setupDatabaseManager() {prefix_, EMPTY}, {prefix_indexes, false}, // {isolation_level, sl("REPEATABLE READ")}, // Postgres default is READ COMMITTED -// {synchronous_commit, sl("off")}, // Postgres default is on +// {synchronous_commit, off}, // Postgres default is on // ConnectionFactory provides a default value for this (for reference only) // {dont_drop, QStringList {spatial_ref_sys}}, {options_, ConfigUtils::postgresSslOptions()},