A couple days ago I upgrade cPanel and it upgraded MariaDB to 10.0.31. Since this one of my applications is having a query not work. Below is what my software vendor sent to me. How can I downgrade to 10.0.30 if I need to?
This query works:
SELECT * FROM (totals) WHERE
TotalDate IN (select MAX(TotalDate) from totals WHERE TotalDate <= '2017-05-26');
This, however, does not:
SELECT * FROM (totals) WHERE
TotalDate IN (select MAX(TotalDate) from totals WHERE TotalDate <= '2017-05-26') OR TotalDate IS NULL;
This is a bug in your version of MariaDB. Please consult your host.
This query works:
SELECT * FROM (totals) WHERE
TotalDate IN (select MAX(TotalDate) from totals WHERE TotalDate <= '2017-05-26');
This, however, does not:
SELECT * FROM (totals) WHERE
TotalDate IN (select MAX(TotalDate) from totals WHERE TotalDate <= '2017-05-26') OR TotalDate IS NULL;
This is a bug in your version of MariaDB. Please consult your host.