Re: Server goes to Recovery Mode when run a SQL

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: PegoraroF10 <marcos@f10.com.br>
Cc: pgsql-general@postgresql.org
Date: 2020-08-14T18:53:23Z
Lists: pgsql-general
PegoraroF10 <marcos@f10.com.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



Commits

  1. Be more careful about the shape of hashable subplan clauses.