pgsql/src backend/parser/scan.l backend/po/nls ...

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql/src backend/parser/scan.l backend/po/nls ...
Дата
Msg-id 20020501171208.313AA476108@postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    tgl@postgresql.org    02/05/01 13:12:08

Modified files:
    src/backend/parser: scan.l
    src/backend/po : nls.mk
    src/test/regress/expected: strings.out

Log message:
    Improve lexer's error reporting.  You get the whole token mentioned now
    in parse error messages, not just the part scanned by the last flex rule.
    For example,
    select "foo" "bar";
    used to draw
    ERROR:  parser: parse error at or near """
    which was rather unhelpful.  Now it gives
    ERROR:  parser: parse error at or near ""bar""
    Also, error messages concerning bitstring literals and suchlike will
    quote the source text at you, not the processed internal form of the literal.


В списке pgsql-committers по дате отправления:

Предыдущее
От: wieck@postgresql.org (Jan Wieck)
Дата:
Сообщение: pgsql/src/pl/plpgsql/src gram.y
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql/src backend/parser/parse_node.c backend/ ...