From: <no...@so...> - 2002-09-28 13:42:13
|
Bugs item #615849, was opened at 2002-09-28 14:41 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=116528&aid=615849&group_id=16528 >Category: PgSQL Group: None >Status: Closed >Resolution: Invalid >Priority: 2 Submitted By: Ondrej Palkovsky (ondrap) >Assigned to: Gerhard Häring (ghaering) Summary: problems with Longs in queries Initial Comment: There is a problem with longs in queries, the _quote function incorrectly calls repr() instead of str() on long numbers (e.g. 1L ) and postgres does not like the appended 'L'. str(1L) -> '1', while repr(1L) -> '1L'. ---------------------------------------------------------------------- >Comment By: Gerhard Häring (ghaering) Date: 2002-09-28 15:42 Message: Logged In: YES user_id=163326 This bug was already fixed in revision 1.11 of pyPgSQL/PgSQL.py a few months ago and is thus already fixed in pyPgSQL 2.2. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=116528&aid=615849&group_id=16528 |