Re: function to_char - Mailing list pgsql-bugs

From Tom Lane
Subject Re: function to_char
Date
Msg-id 256548.1618672193@sss.pgh.pa.us
Whole thread Raw
In response to function to_char  ("Fontana Daniel C. \(Desartec S.R.L.\)" <desartecsrl@gmail.com>)
List pgsql-bugs
"Fontana Daniel C. \(Desartec S.R.L.\)" <desartecsrl@gmail.com> writes:
> Example, select length (to_char (1, '990'))
> returns 4 because?

Per the fine manual:

    * If no explicit provision is made for a sign in to_char()'s pattern,
      one column will be reserved for the sign, and it will be anchored to
      (appear just left of) the number. If S appears just left of some
      9's, it will likewise be anchored to the number.

If you don't want to leave space for a sign, it looks like FM is
the only way to do that.

            regards, tom lane



pgsql-bugs by date:

Previous
From: "Fontana Daniel C. \(Desartec S.R.L.\)"
Date:
Subject: function to_char
Next
From: Tom Lane
Date:
Subject: Re: BUG #16969: INSERT of multiple rows into GENERATED ALWAYS AS IDENTITY column with DEFAULT value is broken.