v.22.1Improvement

Support Date32 Type in generateRandom Table Function

Support Date32 type in genarateRandom table function. #32643 (nauta).
Support the Date32 data type in the generateRandom table function.

Why it matters

This feature adds the ability to generate random data of type Date32 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 the generateRandom 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;