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
In the example, SQL like CROSS JOIN ... ON ... is being constructed, but (at least in PostgreSQL) CROSS JOIN does not accept ON, leading to a syntax error.
Description
In the example, SQL like
CROSS JOIN ... ON ...
is being constructed, but (at least in PostgreSQL)CROSS JOIN
does not acceptON
, leading to a syntax error.Steps to Reproduce
Execute the example.
Expected Behavior
SELECT "character", "font"."name" FROM "character" CROSS JOIN "font"
Actual Behavior
SELECT "character", "font"."name" FROM "character" CROSS JOIN "font" ON "character"."font_id" = "font"."id"
Reproduces How Often
Every time
Versions
0.32.1
Additional Information
The text was updated successfully, but these errors were encountered: