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()
32
32
33
33
public DuckDBAppenderRow AppendValue ( bool ? value ) => AppendValueInternal ( value ) ;
34
34
35
- #if NET6_0_OR_GREATER
36
-
37
35
public DuckDBAppenderRow AppendValue ( byte [ ] ? value ) => AppendSpan ( value ) ;
38
36
39
37
public DuckDBAppenderRow AppendValue ( Span < byte > value ) => AppendSpan ( value ) ;
40
- #endif
41
38
42
39
public DuckDBAppenderRow AppendValue ( string ? value ) => AppendValueInternal ( value ) ;
43
40
@@ -119,7 +116,6 @@ private DuckDBAppenderRow AppendValueInternal<T>(T? value)
119
116
return this ;
120
117
}
121
118
122
- #if NET6_0_OR_GREATER
123
119
private unsafe DuckDBAppenderRow AppendSpan ( Span < byte > val )
124
120
{
125
121
if ( val == null )
@@ -138,8 +134,6 @@ private unsafe DuckDBAppenderRow AppendSpan(Span<byte> val)
138
134
return this ;
139
135
}
140
136
141
- #endif
142
-
143
137
private void CheckColumnAccess ( )
144
138
{
145
139
if ( columnIndex >= vectorWriters . Length )
You can’t perform that action at this time.
0 commit comments