From: <no...@so...> - 2002-09-28 12:41:17
|
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: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Ondrej Palkovsky (ondrap) Assigned to: Nobody/Anonymous (nobody) 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'. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=116528&aid=615849&group_id=16528 |