pgsql/src include/tcop/fastpath.h backend/tcop ...

From: Tom Lane <tgl(at)hub(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src include/tcop/fastpath.h backend/tcop ...
Date: 2001-06-01 15:45:42
Message-ID: 200106011545.f51Fjgu26290@hub.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: tgl(at)hub(dot)org 01/06/01 11:45:42

Modified files:
src/include/tcop: fastpath.h
src/backend/tcop: fastpath.c

Log message:
Remove fastpath.c's lame attempt at caching function lookup info across
calls. This has never actually cached anything, because postgres.c does
each fastpath call as a separate transaction command, and so fastpath.c
would always decide that its cache was outdated. If it had worked, it
would now be failing for calls of oldstyle functions due to dangling
pointers in the FmgrInfo struct. Rip it out for simplicity and bug-
proofing.

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2001-06-01 16:09:57 pgsql/src/bin/pg_dump pg_dump.c
Previous Message Michael Meskes 2001-06-01 06:23:20 pgsql/src/interfaces/ecpg ChangeLog preproc/ke ...