Thread: pgsql-server/src backend/commands/copy.c backe ...

pgsql-server/src backend/commands/copy.c backe ...

From
tgl@postgresql.org (Tom Lane)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    02/08/19 11:08:47

Modified files:
    src/backend/commands: copy.c tablecmds.c
    src/backend/nodes: copyfuncs.c equalfuncs.c outfuncs.c
    src/backend/parser: analyze.c gram.y parse_target.c
    src/include/nodes: nodes.h parsenodes.h relation.h

Log message:
    Remove Ident nodetype in favor of using String nodes; this fixes some
    latent wrong-struct-type bugs and makes the coding style more uniform,
    since the majority of places working with lists of column names were
    already using Strings not Idents.  While at it, remove vestigial
    support for Stream node type, and otherwise-unreferenced nodes.h entries
    for T_TupleCount and T_BaseNode.
    NB: full recompile is recommended due to changes of Node type numbers.
    This shouldn't force an initdb though.