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 d806df4 commit 9a4dca0Copy full SHA for 9a4dca0
ClickHouse.Driver.Tests/TestUtilities.cs
@@ -21,7 +21,7 @@ public static class TestUtilities
21
static TestUtilities()
22
{
23
var versionString = Environment.GetEnvironmentVariable("CLICKHOUSE_VERSION");
24
- if (versionString is not null and not "latest")
+ if (versionString is not null and not "latest" and not "head")
25
26
ServerVersion = Version.Parse(versionString.Split(':').Last().Trim());
27
SupportedFeatures = ClickHouseFeatureMap.GetFeatureFlags(ServerVersion);
0 commit comments