Обсуждение: pgsql-server/src backend/nodes/outfuncs.c back ...

Поиск
Список
Период
Сортировка

pgsql-server/src backend/nodes/outfuncs.c back ...

От
tgl@svr1.postgresql.org (Tom Lane)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@svr1.postgresql.org    04/05/08 18:21:18

Modified files:
    src/backend/nodes: outfuncs.c print.c read.c readfuncs.c
    src/include/catalog: catversion.h

Log message:
    Alter string format used for integer and OID lists in stored rules.
    This simplifies and speeds up the reader by letting it get the representation
    right the first time, rather than correcting it after-the-fact.  Also,
    after int and OID lists become separate node types per Neil's pending
    patch, this will let us treat these lists as just plain Nodes instead
    of requiring separate read/write macros the way we have now.