Обсуждение: pgsql-server/src backend/executor/execMain.c b ...

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

pgsql-server/src backend/executor/execMain.c b ...

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

Modified files:
    src/backend/executor: execMain.c execScan.c execUtils.c
                          nodeAppend.c
    src/include/executor: executor.h
    src/include/nodes: execnodes.h

Log message:
    Fix oversight in optimization that avoids an unnecessary projection step
    when scanning a table that we need all the columns from.  In case of
    SELECT INTO, we have to check that the hasoids flag matches the desired
    output type, too.  Per report from Mike Mascari.