maz
I’m getting an query error when attempting to apply a conflict strategy here at line 38: progress_track.ex · GitHub
The idea is that if the incoming last_track_timestamp is lower than the one in the db, then keep the db version, otherwise, use last_track_timestamp.
The error is: ** (Postgrex.Error) ERROR 42601 (syntax_error) syntax error at or near "last_track_timestamp"
but it’s not clear to me what is going on. I’m cribbing this code from here: video_watch_progress/lib/video_watch_progress/progress_track.ex at master · emerleite/video_watch_progress · GitHub
(he is using a different IF() syntax than I am. I changed it because the postgres docs seem to show different syntax than the one he is using, found here). Despite that, I’m still getting an error and I’m not sure why. Any ideas? A further explanation can be found in this youtube video(with timestamp).)
The full error:
[debug] QUERY ERROR db=0.0ms queue=12.2ms idle=1608.5ms
INSERT INTO "progress_track" AS p0 ("user_id","media_item_id","seconds_watched","fully_watched","last_track_timestamp","id","inserted_at","updated_at") VALUES ($1,$2,$3,$4,$5,$6,$7,$8) ON CONFLICT ("seconds_watched","last_track_timestamp") DO UPDATE SET "seconds_watched" = IF last_track_timestamp < VALUES(last_track_timestamp) THEN VALUES(seconds_watched); ELSE seconds_watched END IF;, "last_track_timestamp" = IF last_track_timestamp < VALUES(last_track_timestamp) THEN VALUES(last_track_timestamp); ELSE last_track_timestamp END IF;, "updated_at" = $9 ["1ee573ed-280b-649a-b128-754189a2b76a", "1ee573ef-fbe0-69bc-bae9-5143c3d27d39", 0, false, 1695164017112, "1ee573f5-e464-61f2-aa2a-3ab68add3f36", ~N[2023-09-19 22:53:37], ~N[2023-09-19 22:53:37], ~N[2023-09-19 22:53:37]]
↳ MyApp.Multimedia.ProgressStore.save/1, at: lib/my_app/multimedia/progress_store.ex:20
[error] GenServer #PID<0.2181.0> terminating
** (Postgrex.Error) ERROR 42601 (syntax_error) syntax error at or near "last_track_timestamp"
query: INSERT INTO "progress_track" AS p0 ("user_id","media_item_id","seconds_watched","fully_watched","last_track_timestamp","id","inserted_at","updated_at") VALUES ($1,$2,$3,$4,$5,$6,$7,$8) ON CONFLICT ("seconds_watched","last_track_timestamp") DO UPDATE SET "seconds_watched" = IF last_track_timestamp < VALUES(last_track_timestamp) THEN VALUES(seconds_watched); ELSE seconds_watched END IF;, "last_track_timestamp" = IF last_track_timestamp < VALUES(last_track_timestamp) THEN VALUES(last_track_timestamp); ELSE last_track_timestamp END IF;, "updated_at" = $9
called from:
def save(progress_data) do
ProgressTrack.changeset(%ProgressTrack{}, progress_data)
|> dbg()
|> Repo.insert(on_conflict: ProgressTrack.insert_conflict_strategy(progress_data), conflict_target: [:seconds_watched, :last_track_timestamp])
|> process_result
end
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sbuttgereit
This isn’t going to work. The
IFyou are using is fromPL/pgSQLwhich is the most common PostgreSQL procedural language used for creating stored procedures and functions.PL/pgSQLdoesn’t work as part of the standard query language which is what you need.I haven’t really looked closely at your query or what the best way to do what you’re doing is. But if you really need something looking like a conditional in the query, look at
CASEin the PostgreSQL docs… PostgreSQL: Documentation: 18: 9.18. Conditional Expressions. These are the SQL query conditional expressions you’re looking for.al2o3cr
That’s using MariaDB, where the syntax to put in upsert clauses is different -
VALUES()is from there, as isIF()The Postgres equivalents would be the
EXCLUDEDtable andCASEstatement, thoughGREATESTwill save some typing. Something like this:BEWARE: I have not run this code and I’m not certain it will work. In particular, I’m unsure if the bare references to
last_track_timestampandseconds_watchedwill still count as unambiguous (sinceEXCLUDEDhas the same columns). You may need to do somefragmentjuggling to use?for those.maz
Thanks for the insight. So I think I’m close here: revised code
But I’m getting a new error
** (Postgrex.Error) ERROR 42P10 (invalid_column_reference) there is no unique or exclusion constraint matching the ON CONFLICT specification:Is the issue using
EXCLUDEDwhilst neitherlast_track_timestampnorseconds_watchedare unique constraints?benwilson512
Yes. Postgres needs your conflict target to be a unique index or unique constraint (which makes a unique index).
maz
So this strategy won’t work with postgresql? I have to account for the possibility of a newer timestamp being clobbered by an older one because I plan to use a Genstage queue which might deliver tracking events out of order. Is there any way to do this with postgresql without a costly Repo.get() query before I insert? Maybe if I just write the fragment without using EXCLUDED?
maz
So this is what I’m trying now:
"CASE WHEN last_track_timestamp < v.last_track_timestamp THEN v.seconds_watched ELSE seconds_watched END"and
"CASE WHEN last_track_timestamp < v.last_track_timestamp THEN v.last_track_timestamp ELSE last_track_timestamp"But postgresql goes all weird on me saying
syntax error at or near ","but I’m sure there is no misplaced,anywhere .. bizarre.sbuttgereit
You’re missing the
ENDat the end of the clause. The first character after where theENDshould be is a,.al2o3cr
The columns passed to
conflict_targetshould be the ones that have a unique index, not the ones you want to update.In the case of your original example, that would be
:user_idand:video_idmaz
Is it possible to run an sql fragment before every upsert? I plan to use a Genstage queue which might deliver tracking events out of order, so I need the newest timestamp to always “win”.
maz
Whoops, thanks.