Actual output
produces the following broken output (from 1.7):
SELECT
"table_name"."id",
"table_name"."network_id",
"table_name"."network_merchant_id",
FROM "table_name" LEFT JOIN "network_merchant" ON ."network_merchant_id" = "network_merchant"."id"
ORDER BY "table_name"."id" ASC
Expected output
but used to produce this correct output (from v1.6.1):
SELECT
"table_name"."id",
"table_name"."network_id",
"table_name"."network_merchant_id",
FROM "table_name" LEFT JOIN "network_merchant" ON "table_name"."network_merchant_id" = "network_merchant"."id"
ORDER BY "table_name"."id" ASC
Describe the bug Left join doesn't work. Note the
ON ."network_merchant_id"
below in the broken SQL output.Information
Detail Code This PHP code:
Actual output produces the following broken output (from 1.7):
Expected output but used to produce this correct output (from v1.6.1):