IncrementGenerator generator¶
Generate a sequential integer as a pure function of the row position.
Why: Use IncrementGenerator for row-position-derived local sequences whose result must be worker-invariant; use SequenceTableGenerator when a database must coordinate identifiers across runs.
Category: core.
Output: int.
1 | |
Parameters¶
start:int; Default1โ Value produced for the first row.end:int; Default9223372036854775807โ Upper sequence boundary used to detect exhaustion.step:int; Default1โ Signed increment applied for each following row position.include_end:bool; DefaultTrueโ Whether the exact end boundary is a valid output.