Обсуждение: pgsql-server/ ontrib/cube/cubescan.l ontrib/se ...

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

pgsql-server/ ontrib/cube/cubescan.l ontrib/se ...

От
tgl@developer.postgresql.org (Tom Lane)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@developer.postgresql.org    03/05/29 18:30:03

Modified files:
    contrib/cube   : cubescan.l
    contrib/seg    : segscan.l
    contrib/tsearch: parser.l
    src/backend/bootstrap: bootscanner.l
    src/backend/parser: scan.l
    src/backend/utils/misc: guc-file.l
    src/pl/plpgsql/src: scan.l

Log message:
    Ensure that in all flex lexers that are part of the backend, a
    yy_fatal_error() call results in elog(ERROR) not exit().  This was
    already fixed in the main lexer and plpgsql, but extend same technique
    to all the other dot-l files.  Also, on review of the possible calls
    to yy_fatal_error(), it seems safe to use elog(ERROR) not elog(FATAL).