From 15dd46a91a2a80bd471a5cfae236d9643e8f868d Mon Sep 17 00:00:00 2001 From: mdipierro Date: Mon, 9 Dec 2013 21:28:26 -0600 Subject: [PATCH] reverted grouping of joined tables --- VERSION | 2 +- gluon/dal.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 810eb860..05a0c515 100644 --- a/VERSION +++ b/VERSION @@ -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 diff --git a/gluon/dal.py b/gluon/dal.py index 1211e894..3108a781 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -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')