The following is expected:
UPDATE "themes", "entities"
SET
"themes"."name" = :themes.name
WHERE
"entities"."uuid" = :uuid
instead when doing ->table(Tables::THEMES . ', ' . Tables::ENTITIES) I get:
UPDATE "themes," "entities"
SET
"themes"."name" = :themes.name
WHERE
"entities"."uuid" = :uuid
and when doing ->table(Tables::THEMES . ' , ' . Tables::ENTITIES) I get:
UPDATE "themes" "," "entities"
SET
"themes"."name" = :themes.name
WHERE
"entities"."uuid" = :uuid
The following is expected:
instead when doing
->table(Tables::THEMES . ', ' . Tables::ENTITIES)I get:and when doing
->table(Tables::THEMES . ' , ' . Tables::ENTITIES)I get: