Owens
How to read Postgrex SQL ERROR 42703
Hello all,
I’m scratching my head trying to read this error log from Postgrex.
** (Postgrex.Error) ERROR 42703 (undefined_column) column c2.user_id does not exist
query: SELECT t0."id", t0."logo_url", t0."icon_url", t0."invite_password",
t0."is_company", t0."long_description", t0."name", t0."short_description",
t0."company_id", t0."inserted_at", t0."updated_at",
c1."id" FROM "teams" AS t0 INNER JOIN "cohorts"
AS c1 ON c1."id" = ANY($1) INNER JOIN "cohorts_teams"
AS c2 ON c2."cohort_id" = c1."id" WHERE (c2."user_id" = t0."id") ORDER BY c1."id"
Here’s the function call.
teams_query = Team |> preload(:teams_users)
organization_query = Organization |> preload(:organizations_users)
cohort = Cohort
|> preload([teams: ^teams_query, organization: ^organization_query])
|> Repo.get!(cohort_id)
It appears to be looking for user_id on the cohorts_teams table, which doesn’t exist. If so, why could it be looking for this?
Marked As Solved
benwilson512
You have a mistake here: many_to_many :teams, Rocketship.Accounts.User, join_through: "cohorts_teams". This should be Rocketship.Accounts.Team probably.
Also, if you use join_through and then a string it won’t use the schema, you need to join_through: [:cohorts_teams, :team]
Also Liked
benwilson512
As a first note, the stuff you’re linking to are quite old, Ecto 3.X has been out for a while.
Secondly, I was a bit wrong now that I looked at it, I got join_through: confused with has_many through Ecto.Schema — Ecto v3.14.0. I almost always use an actual schema in the middle and not many_to_many.
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #hex









