pgsql/src backend/parser/Makefile backend/pars ...

Поиск
Список
Период
Сортировка
От petere@postgresql.org (Peter Eisentraut - PostgreSQL)
Тема pgsql/src backend/parser/Makefile backend/pars ...
Дата
Msg-id 20020420215615.48591475923@postgresql.org
обсуждение исходный текст
Ответы Re: pgsql/src backend/parser/Makefile backend/pars ...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    petere@postgresql.org    02/04/20 17:56:15

Modified files:
    src/backend/parser: Makefile parse_type.c parser.c scan.l
    src/backend/tcop: postgres.c
    src/include/parser: gramparse.h parser.h
    src/include/tcop: tcopprot.h

Log message:
    Scanner performance improvements

    Use flex flags -CF.  Pass the to-be-scanned string around as StringInfo
    type, to avoid querying the length repeatedly.  Clean up some code and
    remove lex-compatibility cruft.  Escape backslash sequences inline.  Use
    flex-provided yy_scan_buffer() function to set up input, rather than using
    myinput().


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

Предыдущее
От: petere@postgresql.org (Peter Eisentraut - PostgreSQL)
Дата:
Сообщение: pgsql/src/interfaces/ecpg/test test1.pgc
Следующее
От: petere@postgresql.org (Peter Eisentraut - PostgreSQL)
Дата:
Сообщение: pgsql/src/backend/libpq pqcomm.c