Rafi
Rafi
I'm still facing this issue building for Linux on Mac. The only option I see is directly trying to build it on Linux. I wonder why this happens though
Thanks a lot, I will take a look at it soon!
Could you post a picture of how the interface looks like?
+1, really need for the `ON_CONFLICT().DO_UPDATE()`
@houten11 I couldn't find any documentation on how to use the `EXCLUDED.ColumnName`. I can see from the doc there's a reference `Link.ID.SET(Link.EXCLUDED.ID),` https://github.com/go-jet/jet/wiki/INSERT#postgresql-sqlite-insert-with-on-conflict-update I'm not sure how does it handle...
Interestingly if I try to set nil, I find a runtime crash. @go-jet ``` Link.INSERT(Link.ID, Link.URL, Link.Name, Link.Description). VALUES(100, "http://www.postgresqltutorial.com", "PostgreSQL Tutorial", DEFAULT). ON_CONFLICT(Link.ID).DO_UPDATE( SET( Link.URL.SET(nil), ), ) ```
Wow, I wonder why I didn't Google that first. Thanks a lot for explaining in detail. 🙏
A bool would suffice for now. This is an absolute need for me as I cannot stand scrolling beyond the last line.