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
This builds the correct query in terms of SQL (from what I can see in the tracer).
However I get error Query Error: no column found for name: A_barcode
SELECT
"mv_b"."barcode",
"mv_b"."lbl_type",
"mv_a"."prod_art_id",
"mv_a"."prod_art_pub_uuid",
"mv_a"."lbl_status"
FROM "products"."mv_b"
LEFT JOIN "products"."mv_a" ON "mv_b"."prod_art_pvt_id" = "mv_a"."prod_art_pvt_id"
ORDER BY "mv_b"."prod_brcd_id" ASC
What is causing this error? Am I doing something wrong?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This builds the correct query in terms of SQL (from what I can see in the tracer).
However I get error
Query Error: no column found for name: A_barcode
My partial models:
and
The query that gets built, again it's correct:
What is causing this error? Am I doing something wrong?
Beta Was this translation helpful? Give feedback.
All reactions