SyncIteratorOptMaxDefinitionLevel specifies the maximum definition level that can be expected for this column. Allows for better efficiency, but not required for correct behavior.
(maxDefinitionLevel int)
| 433 | // can be expected for this column. Allows for better efficiency, but not |
| 434 | // required for correct behavior. |
| 435 | func SyncIteratorOptMaxDefinitionLevel(maxDefinitionLevel int) SyncIteratorOpt { |
| 436 | return func(i *SyncIterator) { |
| 437 | i.maxDefinitionLevel = maxDefinitionLevel |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | // SyncIterator is a synchronous column iterator. It scans through the given row |
| 442 | // groups and column, and applies the optional predicate to each chunk, page, and value. |
no outgoing calls