Обсуждение: pgsql/src/interfaces/jdbc/org/postgresql jdbc1 ...

Поиск
Список
Период
Сортировка

pgsql/src/interfaces/jdbc/org/postgresql jdbc1 ...

От
Bruce Momjian - CVS
Дата:
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    momjian@hub.org    01/05/16 12:30:38

Modified files:
    src/interfaces/jdbc/org/postgresql/jdbc1: ResultSet.java
    src/interfaces/jdbc/org/postgresql/jdbc2: ResultSet.java

Log message:
    Change the line:
    return ((c == 't') || (c == 'T'));
    int the getBoolean function on line 184:ish to:
    return ((c == 't') || (c == 'T') (c == '1'));

    Hunter Hillegas