From: | "Gaetano Mendola" <mendola(at)bigfoot(dot)com> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org |
Subject: | pgdb.py is still wrong in Postgres 7.3.1 rpm |
Date: | 2002-12-26 12:15:24 |
Message-ID: | auersq$1jup$1@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-bugs pgsql-interfaces |
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
From | Date | Subject | |
---|---|---|---|
Next Message | Campano, Troy | 2002-12-26 14:38:49 | Incremental backups? |
Previous Message | Mona Gamboa | 2002-12-25 08:12:47 | postmaster failing to shut down |
From | Date | Subject | |
---|---|---|---|
Next Message | JMM Moi-Meme Maitre du Monde | 2002-12-26 14:33:03 | Re: Bug #857: [7.3] Attribute oid not found in a temporary table |
Previous Message | JMM Moi-Meme Maitre du Monde | 2002-12-26 08:02:08 | Re: Bug #857: [7.3] Attribute oid not found in a temporary table |
From | Date | Subject | |
---|---|---|---|
Next Message | Lamar Owen | 2002-12-26 16:57:38 | Re: [BUGS] pgdb.py is still wrong [not just] in Postgres 7.3.1 rpm |
Previous Message | Ilya Kiselyov | 2002-12-24 07:28:15 | Re: where's libpq++ library in 7.3? |