We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d0c84 commit 2edfc17Copy full SHA for 2edfc17
ut/client_ut.cpp
@@ -1490,6 +1490,10 @@ TEST(SimpleClientTest, issue_335_reconnects_count) {
1490
}
1491
1492
TEST_P(ClientCase, QueryParameters) {
1493
+ const auto & server_info = client_->GetServerInfo();
1494
+ if (versionNumber(server_info) < versionNumber(24, 7)) {
1495
+ GTEST_SKIP() << "Test is skipped since server '" << server_info << "' does not support query parameters" << std::endl;
1496
+ }
1497
const std::string table_name = "test_clickhouse_cpp_query_parameter";
1498
client_->Execute("CREATE TEMPORARY TABLE IF NOT EXISTS " + table_name + " (id UInt64, name String)");
1499
{
0 commit comments