This is a bug in python interface module,


			
			
				WIN32_DEV
			
			
		
Bruce Momjian 23 years ago
parent dd23a882fa
commit 92798de02e
  1. 2
      src/interfaces/python/pg.py

@ -17,7 +17,7 @@ def _quote(d, t):
if t in ['int', 'seq']:
if d == "": return "NULL"
return "%d" % int(d)
return "%d" % long(d)
if t == 'decimal':
if d == "": return "NULL"

Loading…
Cancel
Save