Re: pg_dump: WARNING: could not find operator

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Jul 12, 2023, at 2:26 AM, Laurenz Albe <laurenz.albe@xxxxxxxxxxx> wrote:
> To find out which operators are causing the trouble, you can run queries like
> 
> SELECT * FROM pg_operator
> WHERE oprcom IN (2234078, 2234199)
>   OR oprnegate IN (2234078, 2234199);
> 
> and test everything that uses these broken operators particularly well.

OK, I found them in one of our databases. Based on the oprcode values, they seem to be related to an extension we have installed (pgsphere, in case anyone is curious). Probably from an old version of the extension, I'm guessing, as the current pgsphere passes all regression testing.

So how do I clean up these dangling operators? Is it as easy as the following?

DELETE FROM pg_operator
WHERE oprcom IN (2234078, 2234199)
  OR oprnegate IN (2234078, 2234199);

Thanks,
Ed







[Index of Archives]     [Postgresql Home]     [Postgresql General]     [Postgresql Performance]     [Postgresql PHP]     [Postgresql Jobs]     [PHP Users]     [PHP Databases]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Yosemite Forum]

  Powered by Linux