Re: Server goes to Recovery Mode when run a SQL - Mailing list pgsql-general

From PegoraroF10
Subject Re: Server goes to Recovery Mode when run a SQL
Date
Msg-id 1597430001991-0.post@n3.nabble.com
Whole thread Raw
In response to Re: Server goes to Recovery Mode when run a SQL  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Server goes to Recovery Mode when run a SQL  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Server goes to Recovery Mode when run a SQL  (PegoraroF10 <marcos@f10.com.br>)
List pgsql-general
It works, shouldn´t but works. Results False

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
);

Droped them and works as expected, giving me same message like yours.

DROP OPERATOR public.= (text,public.i32);
DROP OPERATOR public.= (public.i32,text);




--
Sent from: https://www.postgresql-archive.org/PostgreSQL-general-f1843780.html



pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Server goes to Recovery Mode when run a SQL
Next
From: Tom Lane
Date:
Subject: Re: Server goes to Recovery Mode when run a SQL