This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
MySQL SelectDecorator - subselect limit parameter not prefixed (fix included) #318
Open
2 tasks done
When you have a FROM clause that includes a query with a LIMIT in it, and you try to prepare the query, you get following error:
The reason for this is because the parameter name for the subselect's limit is
:limit
while in the parameterContainer it is:subselect1limit
.This problem is rectified by modifying
line 55
ofsrc/Sql/Platform/Mysql/SelectDecorator.php
from:to
The text was updated successfully, but these errors were encountered: