8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lpad
No response
SELECT lpad('hi', 5, '');
In PostgreSQL:
test=# SELECT lpad('hi', 5, ''); lpad ------ hi (1 row) test=# SELECT length(lpad('hi', 5, '')); length -------- 2 (1 row)
found by regress test