pgsql/src backend/commands/Makefile backend/co ...

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src backend/commands/Makefile backend/co ...
Date: 2002-04-15 05:22:04
Message-ID: 20020415052204.60BDC4762F8@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql
Changes by: tgl(at)postgresql(dot)org 02/04/15 01:22:04

Modified files:
src/backend/commands: Makefile cluster.c define.c proclang.c
sequence.c view.c
src/include/commands: defrem.h
src/backend/executor: execMain.c spi.c
src/backend/tcop: pquery.c utility.c
Added files:
src/backend/commands: aggregatecmds.c functioncmds.c lockcmds.c
operatorcmds.c portalcmds.c schemacmds.c
tablecmds.c typecmds.c
src/include/commands: lockcmds.h portalcmds.h schemacmds.h
tablecmds.h
Removed files:
src/backend/commands: command.c creatinh.c remove.c rename.c
src/include/commands: command.h creatinh.h rename.h

Log message:
The contents of command.c, creatinh.c, define.c, remove.c and rename.c
have been divided according to the type of object manipulated - so ALTER
TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and
so on.

A few common support routines remain in define.c (prototypes in
src/include/commands/defrem.h).

No code has been changed except for includes to reflect the new files.
The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c,
and typecmds.c remain in src/include/commands/defrem.h.

From John Gray <jgray(at)azuli(dot)co(dot)uk>

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2002-04-15 06:05:49 pgsql/src/backend/parser parse_clause.c
Previous Message Hiroshi Inoue 2002-04-15 02:46:01 pgsql/src/interfaces/odbc pgtypes.c psqlodbc.h ...