v.23.5New Feature

Added "space" Function for Repeating Spaces

Added a function "space" which repeats a space as many times as specified. #50103 (Robert Schulze).
Added a new function space that generates a string consisting of repeated space characters.

Why it matters

This function solves the need to produce a string with a specific number of spaces, which is useful for formatting outputs, padding strings, or other scenarios where repeated spaces are required.

How to use it

Use the function by calling space(n), where n is the number of spaces you want to generate. For example, SELECT space(5) will return a string of five space characters.