Skip to content

Commit bb7ea43

Browse files
committed
Fixed an unexpected keyword argument error
1 parent 61b5d83 commit bb7ea43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqlalchemy_pervasive/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.1'
1+
__version__ = '0.2.2-ccn_fork'

sqlalchemy_pervasive/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class PervasiveCompiler(SQLCompiler):
3434
Custom SQL statement compiler for Pervasive PSQL.
3535
"""
3636

37-
def get_select_precolumns(self, select):
37+
def get_select_precolumns(self, select, **kwargs):
3838
# This logic was copied from the ``sqlalchemy-access`` dialect.
3939
s = 'DISTINCT ' if select._distinct else ''
4040
if select._limit:

0 commit comments

Comments
 (0)