pgdb.py is still wrong in Postgres 7.3.1 rpm

Поиск
Список
Период
Сортировка
От Gaetano Mendola
Тема pgdb.py is still wrong in Postgres 7.3.1 rpm
Дата
Msg-id auersq$1jup$1@news.hub.org
обсуждение исходный текст
Ответы Re: pgdb.py is still wrong [not just] in Postgres 7.3.1 rpm  (Lamar Owen <lamar.owen@wgcr.org>)
Список pgsql-bugs
I already post the fact that the file pgdb.py distribuited with
Postgres 7.3 is wrong but was not already fixed in 7.3.1 !!!!

The class pgdbTypeCache is not working with the version 7.3.1
the method getdescr  try to do the following select:

"SELECT typname, typprtlen, typlen FROM pg_type"

and the column typprtlen is not anymore available,
I suggested to rewrite that select in this way:

"SELECT typname, 4, typlen FROM pg_type"

and someone else suggested:

"SELECT typname, -1, typlen FROM pg_type"



why was not yet corrected ?


Ciao
Gaetano





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

Предыдущее
От: JMM Moi-Meme Maitre du Monde
Дата:
Сообщение: Re: Bug #857: [7.3] Attribute oid not found in a temporary table
Следующее
От: JMM Moi-Meme Maitre du Monde
Дата:
Сообщение: Re: Bug #857: [7.3] Attribute oid not found in a temporary table