2 overrides of GetMaxRecordBatchLength
Microsoft.Data.Analysis (2)
DataFrameColumns\ArrowStringDataFrameColumn.cs (1)
329protected internal override int GetMaxRecordBatchLength(long startIndex)
PrimitiveDataFrameColumn.cs (1)
116protected internal override int GetMaxRecordBatchLength(long startIndex) => _columnContainer.MaxRecordBatchLength(startIndex);
1 reference to GetMaxRecordBatchLength
Microsoft.Data.Analysis (1)
DataFrame.Arrow.cs (1)
198numberOfRowsInThisRecordBatch = (int)Math.Min(numberOfRowsInThisRecordBatch, column.GetMaxRecordBatchLength(numberOfRowsProcessed));