PartitionSize returns the number of rows in the current partition.
()
| 478 | |
| 479 | // PartitionSize returns the number of rows in the current partition. |
| 480 | func (wfr *WindowFrameRun) PartitionSize() int { |
| 481 | return wfr.Rows.Len() |
| 482 | } |
| 483 | |
| 484 | // unboundedFollowing returns the index of the "first row beyond" the partition |
| 485 | // so that current frame contains all the rows till the end of the partition. |
no test coverage detected