Lukáš Klika

Results 4 comments of Lukáš Klika

Same for update ``` php $db->table('movement')->where(':movement_tag.tag', [5])->update(['volume' => 50); ``` generates ``` UPDATE `movement` SET `volume`=50 WHERE (:`movement_tag`.`tag` IN ('5')) ``` instead of ``` UPDATE `movement` LEFT JOIN `movement_tag` ON...

Soon (monday hopefully) I'll make a quick PR, I'll just hardcode those joins into buildUpdateQuery&buildDeleteQuery methods and maybe wrap it in "if is mysql" condition. Very far from optimal solution,...

hi man @alquerci , huge thank you for this, so glad I found it! apparently it's not going to get merged, so if you don't mind, I'm just gonna use...

:+1: Just bumped into same issue and this fix works.