We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2f298 commit 2dbe884Copy full SHA for 2dbe884
src/django_mysql/models/fields/lists.py
@@ -234,7 +234,7 @@ def as_sql(
234
) -> tuple[str, list[str | int]]:
235
lhs, lhs_params = self.process_lhs(compiler, connection)
236
rhs, rhs_params = self.process_rhs(compiler, connection)
237
- params = tuple(lhs_params) + tuple(rhs_params)
+ params = list(lhs_params) + list(rhs_params)
238
# Put rhs on the left since that's the order FIND_IN_SET uses
239
return f"(FIND_IN_SET({rhs}, {lhs}) = {self.index})", params
240
0 commit comments