pgsql-server/src/bin/psql .cvsignore Makefile ...

Поиск
Список
Период
Сортировка
От tgl@svr1.postgresql.org (Tom Lane)
Тема pgsql-server/src/bin/psql .cvsignore Makefile ...
Дата
Msg-id 20040219194009.0968AD1B4C5@svr1.postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@svr1.postgresql.org    04/02/19 15:40:09

Modified files:
    src/bin/psql   : .cvsignore Makefile command.c command.h
                     mainloop.c startup.c
Added files:
    src/bin/psql   : psqlscan.h psqlscan.l

Log message:
    Re-implement psql's input scanning to use a flex-generated lexer, as per
    recent discussion.  The lexer is used for both SQL command text and
    backslash commands.  The purpose of this change is to make it easier to
    track the behavior of the backend's SQL lexer --- essentially identical
    flex rules are now used by psql.  Also, this cleans up a lot of very
    squirrelly code in mainloop.c and command.c.  The flex code is somewhat
    bulkier than the removed code, but should be lots easier to maintain.


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

Предыдущее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql-server/src/backend/parser scan.l
Следующее
От: momjian@svr1.postgresql.org (Bruce Momjian)
Дата:
Сообщение: pgsql-server/doc/TODO.detail java