Re: is it a bug? - Mailing list pgsql-hackers

From Thomas Lockhart
Subject Re: is it a bug?
Date
Msg-id 3A23C5B5.1D15C59@alumni.caltech.edu
Whole thread Raw
In response to is it a bug?  ("He weiping" <laser@zhengmai.com.cn>)
List pgsql-hackers
> ... it seems the "lpad", "rpad" don't work,
> when I type:
> select lpad('laser', 4, 'a');
> in psql, the result is still
> 'laser', the same with 'rpad',
> Is it a bug or I'm mis-understaning the lpad and/or rpad functions?

A simple misunderstanding. The length argument is for the *total*
length. So padding a 5 character string to a length of 4 will do
nothing. But padding to a length of 6 will add a single "a" to the
string.

                        - Thomas

pgsql-hackers by date:

Previous
From: Zeugswetter Andreas SB
Date:
Subject: AW: Constraint names using 'user namespace'?
Next
From: Zeugswetter Andreas SB
Date:
Subject: AW: is it a bug?