v.20.5New Feature
Add randomFixedString function
Add function randomFixedString. #10866 (Andrei Nekrashevich).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 therandomFixedString function with the desired string length as an argument, for example:SELECT randomFixedString(10);This returns a random string of length 10.