We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select * from users u full outer join departments d on u.deptid = d.id
gets transformed into
SELECT * FROM users u FULL OUTER JOIN departments d ON u.deptid = d.id
when it should get transformed into
sleek works correctly if that's a LEFT OUTER JOIN.
sleek
LEFT OUTER JOIN
SELECT * FROM users u LEFT OUTER JOIN departments d ON u.deptid = d.id
The table aliases don't seem to affect it one way or the other.
SELECT * FROM users FULL OUTER JOIN departments ON users.deptid = departments.id
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gets transformed into
when it should get transformed into
sleek
works correctly if that's aLEFT OUTER JOIN
.The table aliases don't seem to affect it one way or the other.
The text was updated successfully, but these errors were encountered: