PGA3 bug

Поиск
Список
Период
Сортировка
От Andreas Pflug
Тема PGA3 bug
Дата
Msg-id 3E8060E4.1050908@web.de
обсуждение исходный текст
Список pgadmin-hackers
While trying to connect to my 7.4 server on port 5440, I found some bugs.
The NumToStr(double) function will return 544 for 5440.0

the function should look like this
...
if (result.Contains(wxT(".")))
    while (result.Right(1) == "0")
        result.RemoveLast();
if (result.Right(1) == ".")
    result.RemoveLast();

The call to NumToStr in pgConn.cpp (Line 91) should be a cast to long
instead of double.

Regards,

Andreas


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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: Clone object database
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: PGA3 bug