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
Doing a join with "using" for a column ID implies it's not ambiguous - it doesn't matter which one you pick because they're the same. Postgres realizes this but pg-mem doesn't.
column reference "x" is ambiguous
🐜 This seems to be an execution error, which means that your request syntax seems okay,
but the resulting statement cannot be executed → Probably not a pg-mem error.
*️⃣ Reconsituted failed SQL statement: SELECT x FROM foo INNER JOIN bar USING (x)
To Reproduce
createtablefoo(x integer);
createtablebar (x integer);
select x from foo join bar using (x);
pg-mem version
2.8.1 (reproducible in playground at time of writing)
The text was updated successfully, but these errors were encountered:
Describe the bug
Doing a join with "using" for a column ID implies it's not ambiguous - it doesn't matter which one you pick because they're the same. Postgres realizes this but pg-mem doesn't.
To Reproduce
pg-mem version
2.8.1 (reproducible in playground at time of writing)
The text was updated successfully, but these errors were encountered: