Re: Bug in documentation (trim(...))? - Mailing list pgsql-general

From Francisco Olarte
Subject Re: Bug in documentation (trim(...))?
Date
Msg-id CA+bJJbxrcfDPaBA6v7SYFjthLBKcDk0FTA68cPJ=UoLUkDiQYw@mail.gmail.com
Whole thread Raw
In response to Bug in documentation (trim(...))?  (Johann Spies <johann.spies@gmail.com>)
Responses Re: Bug in documentation (trim(...))?
List pgsql-general
On Mon, May 20, 2019 at 12:09 PM Johann Spies <johann.spies@gmail.com> wrote:
> The following illustrates the problem (removing double quotes from a string):

Missing "select " in your examples, is it intentional?

> js=# trim(both '"' from '"University of Cape Town"');
> ERROR:  syntax error at or near "trim"
> LINE 1: trim(both '"' from '"University of Cape Town"');
> js=# trim(both 'xyz' from 'yxTomxx');
> ERROR:  syntax error at or near "trim"
> LINE 1: trim(both 'xyz' from 'yxTomxx');
>         ^
> I would think that "trim" if it works in this case would be a cheaper function than using rexexp_replace twice.

( copied from your mail AFTER "select " ):

$ select trim(both '"' from '"University of Cape Town"');
          btrim
-------------------------
 University of Cape Town
(1 row)

$ select trim(both 'xyz' from 'yxTomxx');
 btrim
-------
 Tom
(1 row)

Francisco Olarte.



pgsql-general by date:

Previous
From: Jason Harvey
Date:
Subject: pg_upgrade can result in early wraparound on databases with hightransaction load
Next
From: Johann Spies
Date:
Subject: Re: Bug in documentation (trim(...))?