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
Cross joins does not work in NyQL.
$DSL.select { TARGET(Film.alias("f")) JOIN (TARGET()) { JOIN (Actor.alias("ac")) } }
Expected SQL:
SELECT * FROM `Film` f CROSS JOIN `Actor` ac
But NyQL always generates it as an INNER JOIN.
INNER JOIN
The text was updated successfully, but these errors were encountered:
cross joins are made to work #15
0cc8de5
default join clause now belongs to cross join.
isuru89
No branches or pull requests
Cross joins does not work in NyQL.
Expected SQL:
But NyQL always generates it as an
INNER JOIN
.The text was updated successfully, but these errors were encountered: