v.1.1.54388New Feature
numbers() Table Function Now Supports Offset Specification
The numbers() table function now allows you to specify the offset (Winter Zhang).Why it matters
This feature enables users to generate sequences of numbers starting from a custom offset rather than from zero, providing more flexibility in data generation and testing scenarios.How to use it
Use thenumbers() function with the offset parameter as numbers(offset, count) to generate a sequence starting at offset and generating count numbers. For example: SELECT * FROM numbers(10, 5)This generates numbers starting from 10, producing 5 rows.