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

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql/src backend/commands/Makefile backend/co ...
Дата
Msg-id 20020415052204.60BDC4762F8@postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    tgl@postgresql.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@azuli.co.uk>


В списке pgsql-committers по дате отправления:

Предыдущее
От: inoue@postgresql.org (Hiroshi Inoue)
Дата:
Сообщение: pgsql/src/interfaces/odbc pgtypes.c psqlodbc.h ...
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql/src/backend/parser parse_clause.c