pgsql/src/backend/parser parse_coerce.c - Mailing list pgsql-committers

From Tatsuo Ishii
Subject pgsql/src/backend/parser parse_coerce.c
Date
Msg-id 200102270707.f1R771d67506@hub.org
Whole thread Raw
List pgsql-committers
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    ishii@hub.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;


pgsql-committers by date:

Previous
From: Michael Meskes
Date:
Subject: pgsql/src/interfaces/ecpg ChangeLog preproc/pr ...
Next
From: Tatsuo Ishii
Date:
Subject: pgsql/ rc/include/config.h.in rc/bin/psql/Make ...