pgsql: Get rid of obsolete parse_version helper function.

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Get rid of obsolete parse_version helper function.
Дата
Msg-id E1UKU0I-00028u-2O@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Get rid of obsolete parse_version helper function.

For getting the server's version in numeric form, use PQserverVersion().
It does the exact same parsing as dumputils.c's parse_version(), and has
been around in libpq for a long time. For the client's version, just use
the PG_VERSION_NUM constant.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/901b89e37bb8e71224ee76987679010ff3c93c05

Modified Files
--------------
src/bin/pg_dump/dumputils.c    |   23 -----------------------
src/bin/pg_dump/dumputils.h    |    1 -
src/bin/pg_dump/pg_backup_db.c |   22 +++-------------------
src/bin/pg_dump/pg_dump.c      |    7 +------
src/bin/pg_dump/pg_dumpall.c   |   12 +++---------
src/bin/psql/command.c         |    2 +-
6 files changed, 8 insertions(+), 59 deletions(-)


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Fix a small logic bug in adjusted parallel restore code.
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Fix pg_dump against 9.1/9.2 servers.