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
The subquery should be selecting registrationID from registration_clone_queue.
What actually happened instead?
The SQL produced was to SELECT registrationID FROM registrations (the table of the parent entity where the scope lives). registrationID is the primary key.
A workaround is to specify an alias in the from clause and refer to the registraitonID explicitly with the table prefix.
Environment
List the software versions you're using:
Quick: 7.3.1 / Lucee 5
The text was updated successfully, but these errors were encountered:
The following Quick scope is producing an erroneous table prefix for the 'where in' clause.
What did you expect to happen?
The subquery should be selecting registrationID from registration_clone_queue.
What actually happened instead?
The SQL produced was to SELECT registrationID FROM registrations (the table of the parent entity where the scope lives). registrationID is the primary key.
A workaround is to specify an alias in the
from
clause and refer to the registraitonID explicitly with the table prefix.Environment
List the software versions you're using:
The text was updated successfully, but these errors were encountered: