Re: Server goes to Recovery Mode when run a SQL

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: PegoraroF10 <marcos(at)f10(dot)com(dot)br>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Server goes to Recovery Mode when run a SQL
Date: 2020-08-14 18:53:23
Message-ID: 654057.1597431203@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

PegoraroF10 <marcos(at)f10(dot)com(dot)br> writes:
> And I have created these two operators a long time ago.

> CREATE OPERATOR public.= (
> FUNCTION = public.fntextonumero,
> LEFTARG = text,
> RIGHTARG = public.i32
> );
> CREATE OPERATOR public.= (
> FUNCTION = public.fntextonumero,
> LEFTARG = public.i32,
> RIGHTARG = text
> );

... so, what do those functions look like? And, since there's evidently a
custom type or domain involved, what is i32 exactly?

In short: you have completely failed to provide a self-contained test
case.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message PegoraroF10 2020-08-14 18:56:03 Re: Server goes to Recovery Mode when run a SQL
Previous Message PegoraroF10 2020-08-14 18:33:21 Re: Server goes to Recovery Mode when run a SQL