pgsql/src/interfaces/python pgmodule.c

Поиск
Список
Период
Сортировка
От momjian@postgresql.org
Тема pgsql/src/interfaces/python pgmodule.c
Дата
Msg-id 200110161342.f9GDgvd45200@postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    01/10/16 09:42:57

Modified files:
    src/interfaces/python: pgmodule.c

Log message:
    Python handle as string all int8 values from postgresql. This could be
    view when using the aggregate function count() and function nextval
    that returns an int8 value, but in python is represented like string:

    >> db.query("select nextval('my_seq')").getresult()
    [('2',)]

    >> db.query("select count(*) from films").dictresult()
    [{'count': '120'}]

    Ricardo Caesar Lenzi


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

Предыдущее
От: ishii@postgresql.org
Дата:
Сообщение: pgsql/ /configure.in /configure rc/include/mb/ ...
Следующее
От: barry@postgresql.org
Дата:
Сообщение: pgsql/src/interfaces/jdbc/org/postgresql Conne ...