v.22.1Improvement
Support Date32 Type in generateRandom Table Function
Why it matters
This feature adds the ability to generate random data of typeDate32 using the generateRandom table function, allowing users to create test data that includes dates covering a wider range than Date. It improves the versatility of data generation for testing and development purposes.How to use it
Use thegenerateRandom table function with a column of type Date32 defined. The function will then produce random Date32 values accordingly. For example:SELECT * FROM generateRandom('date32') LIMIT 10;