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 1ce99b7 commit dd2c058Copy full SHA for dd2c058
src/django_mysql/models/fields/lists.py
@@ -233,7 +233,7 @@ def as_sql(
233
) -> tuple[str, list[str | int]]:
234
lhs, lhs_params = self.process_lhs(compiler, connection)
235
rhs, rhs_params = self.process_rhs(compiler, connection)
236
- params = tuple(lhs_params) + tuple(rhs_params)
+ params = list(lhs_params) + list(rhs_params)
237
# Put rhs on the left since that's the order FIND_IN_SET uses
238
return f"(FIND_IN_SET({rhs}, {lhs}) = {self.index})", params
239
0 commit comments