v.20.5New Feature

Add randomFixedString function

Add function randomFixedString. #10866 (Andrei Nekrashevich).
Introduces the randomFixedString function to generate random fixed-length strings.

Why it matters

This feature provides users with a simple way to generate random strings of a specified fixed length, useful for testing, data generation, or anonymization tasks.

How to use it

Call the randomFixedString function with the desired string length as an argument, for example:

SELECT randomFixedString(10);

This returns a random string of length 10.