pgsql/src/backend/parser parse_coerce.c

From: Tatsuo Ishii <ishii(at)hub(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/parser parse_coerce.c
Date: 2001-02-27 07:07:01
Message-ID: 200102270707.f1R771d67506@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: ishii(at)hub(dot)org 01/02/27 02:07:00

Modified files:
src/backend/parser: parse_coerce.c

Log message:
Fix vacuum analyze error.

vacuum analyze on pg_type fails if bogus entries remain in pg_operator.
Here is a sample script to reproduce the problem.

drop table t1;
create table t1(i int);
drop function foo(t1,t1);
create function foo(t1,t1) returns bool as 'select true' language 'sql';
create operator = (
leftarg = t1,
rightarg = t1,
commutator = =,
procedure = foo
);
drop table t1;
vacuum analyze;

Browse pgsql-committers by date

  From Date Subject
Next Message Tatsuo Ishii 2001-02-27 08:13:32 pgsql/ rc/include/config.h.in rc/bin/psql/Make ...
Previous Message Michael Meskes 2001-02-26 14:42:55 pgsql/src/interfaces/ecpg ChangeLog preproc/pr ...