Skip to content

Commit 3a7f784

Browse files
committed
Merge pull request #7 from gbrian/Fix_limit_clause
Fix function signature
2 parents 4456683 + b49e9d4 commit 3a7f784

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlalchemy_monetdb/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def visit_sequence(self, seq):
7979
% self.dialect.identifier_preparer.format_sequence(seq)
8080
return exc
8181

82-
def limit_clause(self, select):
82+
def limit_clause(self, select, **kw):
8383
text = ""
8484
if select._limit is not None:
8585
text += "\nLIMIT " + str(select._limit)

0 commit comments

Comments
 (0)