You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I remember explicitly solving for something very similar in the Postgres Kotlin codegen when numbered parameters are used. It was, 0f5afd3, done by tracking paramRefs by order of occurrence (allowing duplicates) instead of keeping them as a sorted set. This code still seems to work in Dolphin! Maybe something similar can be done to solve the problem with numbered parameters?
A MySQL query like:
gets compiled into:
which causes MySQL to complain because only one argument is supplied when it was expecting two.
It seems like we should at least error out during code generation in this case, but even better would be to do:
The text was updated successfully, but these errors were encountered: