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
CREATETABLEA (a_id INTEGERPRIMARY KEY, name TEXT);
CREATETABLEB (a_id INTEGER UNIQUE REFERENCES A(a_id), count INTEGER);
SELECTB.a_idFROM A
JOIN B b ONb.a_id=A.a_id;
Resolving the alias is hard coded in InsertStmtMixin and not reusable for JoinClauseMixin or dialect authors.
The text was updated successfully, but these errors were encountered:
Resolving the alias is hard coded in
InsertStmtMixin
and not reusable forJoinClauseMixin
or dialect authors.The text was updated successfully, but these errors were encountered: