Ticket #9302: patch

File patch, 182 bytes (added by bugs@…, 16 years ago)

patch for postgresql operations.py

Line 
158c58
2< cursor.execute("SELECT CURRVAL('\"%s_%s_seq\"')" % (table_name, pk_name))
3---
4> cursor.execute('SELECT last_value from "%s_%s_seq"' % (table_name, pk_name))
5
Back to Top