Skip to content

Commit e05d387

Browse files
committed
Fix recursive call.
1 parent eeda4c8 commit e05d387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_mongodb_backend/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def concat(self, compiler, connection):
8787
def concat_pair(self, compiler, connection):
8888
# null on either side results in null for expression, wrap with coalesce.
8989
coalesced = self.coalesce()
90-
return super(ConcatPair, coalesced).as_mql(compiler, connection)
90+
return super(ConcatPair, coalesced).as_mql_expr(compiler, connection)
9191

9292

9393
def cot(self, compiler, connection):

0 commit comments

Comments
 (0)