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
The following code does not work anymore with MySQL 8:
$c->groupby($this->classKey . '.key', 'ASC');
According to @digitalpenguin it has to be reduced to:
$c->groupby($this->classKey . '.key');
The text was updated successfully, but these errors were encountered:
Here's some info about it: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-sql-changes
It now needs to be done with an ORDER BY clause.
Sorry, something went wrong.
Yes, but xPDO has to handle this or throw/log some deprecated message.
No branches or pull requests
The following code does not work anymore with MySQL 8:
$c->groupby($this->classKey . '.key', 'ASC');
According to @digitalpenguin it has to be reduced to:
$c->groupby($this->classKey . '.key');
The text was updated successfully, but these errors were encountered: