mdipierro
2013-12-08 09:33:30 -06:00
parent 40c02651ae
commit 85058bd847
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2013.12.08.08.24.55
Version 2.8.2-stable+timestamp.2013.12.08.09.32.29
+4
View File
@@ -2714,6 +2714,10 @@ class MySQLAdapter(BaseAdapter):
self.execute('select last_insert_id();')
return int(self.cursor.fetchone()[0])
def select_limitby(self, sql_s, sql_f, sql_t, sql_w, sql_o, limitby):
return BaseAdapter.select_limitby(
self, sql_s, sql_f, '(%s)' % sql_t, sql_w, sql_o, limitby)
class PostgreSQLAdapter(BaseAdapter):
drivers = ('psycopg2','pg8000')