3 writes to _columns
Microsoft.ML.Parquet (3)
PartitionedPathParser.cs (3)
228
_columns
= new PartitionedFileLoader.Column[0];
245
_columns
= new PartitionedFileLoader.Column[numColumns];
290
_columns
= new PartitionedFileLoader.Column[names.Count];
7 references to _columns
Microsoft.ML.Parquet (7)
PartitionedPathParser.cs (7)
250
_columns
[i] = column;
274
ctx.Writer.Write(
_columns
.Length);
276
foreach (var col in
_columns
)
293
_columns
[i] = new PartitionedFileLoader.Column()
301
return
_columns
;
311
if (values.Count !=
_columns
.Length)
313
throw Contracts.Except($"The extracted value count of {values.Count} does not match the expected Column count of {
_columns
.Length} for path {path}");