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 af2acea commit 16635e9Copy full SHA for 16635e9
src/net-questdb-client/Buffers/Buffer.cs
@@ -47,7 +47,7 @@ public static IBuffer Create(int bufferSize, int maxNameLen, int maxBufSize, Pro
47
ProtocolVersion.V1 => new BufferV1(bufferSize, maxNameLen, maxBufSize),
48
ProtocolVersion.V2 => new BufferV2(bufferSize, maxNameLen, maxBufSize),
49
ProtocolVersion.V3 => new BufferV3(bufferSize, maxNameLen, maxBufSize),
50
- ProtocolVersion.Auto => new BufferV2(bufferSize, maxNameLen, maxBufSize),
+ ProtocolVersion.Auto => new BufferV3(bufferSize, maxNameLen, maxBufSize),
51
_ => throw new NotImplementedException(),
52
};
53
}
0 commit comments