File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ public async Task TestWriteRowGroupColumnsChunked()
285285 using var intArray1 = new Int32Array . Builder ( )
286286 . AppendRange ( Enumerable . Range ( start1 , chunkSize ) )
287287 . Build ( ) ;
288- writer . WriteColumnChunk ( new ChunkedArray ( new Array [ ] { intArray0 , intArray1 } ) ) ;
288+ writer . WriteColumnChunk ( new ChunkedArray ( new List < IArrowArray > { intArray0 , intArray1 } ) ) ;
289289 }
290290
291291 {
@@ -295,7 +295,7 @@ public async Task TestWriteRowGroupColumnsChunked()
295295 using var floatArray1 = new FloatArray . Builder ( )
296296 . AppendRange ( Enumerable . Range ( start1 , chunkSize ) . Select ( i => i / 100.0f ) )
297297 . Build ( ) ;
298- writer . WriteColumnChunk ( new ChunkedArray ( new Array [ ] { floatArray0 , floatArray1 } ) ) ;
298+ writer . WriteColumnChunk ( new ChunkedArray ( new List < IArrowArray > { floatArray0 , floatArray1 } ) ) ;
299299 }
300300 }
301301
Original file line number Diff line number Diff line change 11using System ;
2+ using System . Collections . Generic ;
23using System . IO ;
34using System . Linq ;
45using System . Runtime . InteropServices ;
@@ -263,7 +264,7 @@ public unsafe void WriteColumnChunk(ChunkedArray array)
263264 {
264265 arrays [ i ] = array . Array ( i ) ;
265266 }
266- var column = new Apache . Arrow . Column ( field , arrays ) ;
267+ var column = new Apache . Arrow . Column ( field , arrays as IList < IArrowArray > ) ;
267268 var table = new Table ( schema , new [ ] { column } ) ;
268269
269270 var arrayStream = new RecordBatchStream ( table ) ;
Original file line number Diff line number Diff line change 7474 </ItemGroup >
7575
7676 <ItemGroup >
77- <PackageReference Include =" Apache.Arrow" Version =" 13 .0.0" />
77+ <PackageReference Include =" Apache.Arrow" Version =" 18 .0.0" />
7878 <PackageReference Include =" Microsoft.CodeAnalysis.PublicApiAnalyzers" Version =" 3.3.4" >
7979 <PrivateAssets >all</PrivateAssets >
8080 <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
You can’t perform that action at this time.
0 commit comments