You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mysql has a glitch that if ST_Within() = 1 no indexes will be used while just ST_Within() works fine. https://bugs.mysql.com/bug.php?id=76384
However on DQL createQuery query if you use only "WHERE ST_Within( l.point, $areaToSearch )" it will return:
Notice: Trying to access array offset on value of type null
at vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2536
Is there an way to allow the DQL parameter to not have an equal parameter from the extension?
The text was updated successfully, but these errors were encountered:
Mysql has a glitch that if
ST_Within() = 1
no indexes will be used while justST_Within()
works fine.https://bugs.mysql.com/bug.php?id=76384
However on DQL createQuery query if you use only "WHERE ST_Within( l.point, $areaToSearch )" it will return:
Notice: Trying to access array offset on value of type null
at vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2536
Is there an way to allow the DQL parameter to not have an equal parameter from the extension?
The text was updated successfully, but these errors were encountered: