Обсуждение: pgsql-server/src backend/commands/tablecmds.c ...

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

pgsql-server/src backend/commands/tablecmds.c ...

От
neilc@svr1.postgresql.org (Neil Conway)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    neilc@svr1.postgresql.org    04/01/22 22:13:12

Modified files:
    src/backend/commands: tablecmds.c
    src/backend/parser: analyze.c parse_clause.c
    src/include/parser: analyze.h parse_clause.h

Log message:
    Fix a minor bug introduced by the recent CREATE TABLE AS / WITH OIDS
    patch: a 3-value enum was mistakenly assigned directly to a 'bool'
    in transformCreateStmt(). Along the way, change makeObjectName()
    to be static, as it isn't used outside analyze.c