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
Jira issue originally created by user @deeky666:
The QueryBuilder runs into an infinite recursion when using duplicate table aliases for table and/or join clauses:
$qb->select('a.id, b.id') ->from('table_a', 'a') ->join('a', 'table*b', 'b', 'a.fk*b = b.id') ->join('a', 'table*b', 'b', 'a.fk*b = b.id') ->join('b', 'table*a', 'a', 'a.fk*b = b.id');
Non-unique table aliases should be detected and an appropriate exception should be thrown instead.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Issue was closed with resolution "Fixed"
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
deeky666
No branches or pull requests
Jira issue originally created by user @deeky666:
The QueryBuilder runs into an infinite recursion when using duplicate table aliases for table and/or join clauses:
Non-unique table aliases should be detected and an appropriate exception should be thrown instead.
The text was updated successfully, but these errors were encountered: