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
The expected query is a way of getting around not being able to do joins in update statements. While it is valid for MySQL, it isn't for SQLite, so the alternative is a subselect.
I thought it best to mention this though. Could things like this be documented as 'not possible'?
I could see where the relevant Update classes could be modified to handle multiple calls to table() and comma-separate them on output. @designermonkey if you want to submit a PR for that I'd be happy to review.
The following is expected:
instead when doing
->table(Tables::THEMES . ', ' . Tables::ENTITIES)
I get:and when doing
->table(Tables::THEMES . ' , ' . Tables::ENTITIES)
I get:The text was updated successfully, but these errors were encountered: