pgsql-server/src backend/access/common/printtu ...

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql-server/src backend/access/common/printtu ...
Date: 2003-05-06 00:20:33
Message-ID: 20030506002033.AE702475EEE@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: tgl(at)postgresql(dot)org 03/05/05 20:20:33

Modified files:
src/backend/access/common: printtup.c
src/backend/commands: explain.c
src/backend/executor: execMain.c execTuples.c functions.c
nodeSort.c spi.c tstoreReceiver.c
src/backend/nodes: copyfuncs.c equalfuncs.c makefuncs.c
outfuncs.c print.c readfuncs.c
src/backend/optimizer/plan: createplan.c planner.c
src/backend/optimizer/prep: prepunion.c
src/backend/optimizer/util: tlist.c
src/backend/parser: analyze.c parse_target.c
src/backend/tcop: dest.c postgres.c pquery.c
src/include/access: printtup.h
src/include/catalog: catversion.h
src/include/executor: executor.h
src/include/nodes: plannodes.h primnodes.h
src/include/optimizer: planmain.h tlist.h
src/include/parser: parse_target.h
src/include/tcop: dest.h

Log message:
Implement feature of new FE/BE protocol whereby RowDescription identifies
the column by table OID and column number, if it's a simple column
reference. Along the way, get rid of reskey/reskeyop fields in Resdoms.
Turns out that representation was not convenient for either the planner
or the executor; we can make the planner deliver exactly what the
executor wants with no more effort.
initdb forced due to change in stored rule representation.

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2003-05-06 04:16:35 pgsql-server/src/backend bootstrap/bootstrap.c ...
Previous Message Tom Lane 2003-05-05 17:57:47 pgsql-server/src backend/executor/execMain.c b ...