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 c9492d7 commit 4850e7fCopy full SHA for 4850e7f
src/net-questdb-client/Senders/ISender.cs
@@ -239,6 +239,7 @@ public interface ISender : IDisposable
239
/// <returns>Itself</returns>
240
public ISender Column(ReadOnlySpan<char> name, string? value)
241
{
242
+ if (value is null) return this;
243
return Column(name, value.AsSpan());
244
}
245
0 commit comments