reverted grouping of joined tables

This commit is contained in:
mdipierro
2013-12-09 21:28:26 -06:00
parent c379b00918
commit 15dd46a91a
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2013.12.09.18.55.10
Version 2.8.2-stable+timestamp.2013.12.09.21.27.36
-4
View File
@@ -2715,10 +2715,6 @@ 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')