File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,9 @@ public void EndRow()
3232
3333 public DuckDBAppenderRow AppendValue ( bool ? value ) => AppendValueInternal ( value ) ;
3434
35- #if NET6_0_OR_GREATER
36-
3735 public DuckDBAppenderRow AppendValue ( byte [ ] ? value ) => AppendSpan ( value ) ;
3836
3937 public DuckDBAppenderRow AppendValue ( Span < byte > value ) => AppendSpan ( value ) ;
40- #endif
4138
4239 public DuckDBAppenderRow AppendValue ( string ? value ) => AppendValueInternal ( value ) ;
4340
@@ -119,7 +116,6 @@ private DuckDBAppenderRow AppendValueInternal<T>(T? value)
119116 return this ;
120117 }
121118
122- #if NET6_0_OR_GREATER
123119 private unsafe DuckDBAppenderRow AppendSpan ( Span < byte > val )
124120 {
125121 if ( val == null )
@@ -138,8 +134,6 @@ private unsafe DuckDBAppenderRow AppendSpan(Span<byte> val)
138134 return this ;
139135 }
140136
141- #endif
142-
143137 private void CheckColumnAccess ( )
144138 {
145139 if ( columnIndex >= vectorWriters . Length )
You can’t perform that action at this time.
0 commit comments