Thread: pgsql/src backend/executor/execMain.c backend/ ...

pgsql/src backend/executor/execMain.c backend/ ...

From
momjian@postgresql.org (Bruce Momjian - CVS)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    02/06/25 13:27:20

Modified files:
    src/backend/executor: execMain.c execUtils.c
    src/backend/optimizer/path: costsize.c
    src/backend/optimizer/prep/_deadcode: prepkeyset.c
    src/include/executor: executor.h
    src/test/regress/expected: alter_table.out create_misc.out
                               domain.out insert.out
                               select_having.out
    src/test/regress/output: constraints.source
    src/test/regress/sql: create_misc.sql select_having.sql

Log message:
    The attached patch fixes some spelling mistakes, makes the
    comments on one of the optimizer functions a lot more
    clear, adds a summary of the recent KSQO discussion to the
    comments in the code, adds regression tests for the bug with
    sequence state Tom fixed recently and another reg. test, and
    removes some PostQuel legacy stuff: ExecAppend -> ExecInsert,
    ExecRetrieve -> ExecSelect, etc. This was changed because the
    elog() messages from this routine are user-visible, so we
    should be using the SQL terms.

    Neil Conway