Abdussamet Koçak

Results 26 comments of Abdussamet Koçak

Any updates on this? I'd love to be able to view lyrics from .lrc files.

Try using `goqu.Record`: ```golang goqu.Insert("table").OnConflict(goqu.DoUpdate( "id", goqu.Record{ "id": goqu.I("new.id"), "name": goqu.I("new.name"), }, )) ``` which produces ```sql ... ON CONFLICT (id) DO UPDATE SET "id"="new"."id","name"="new"."name" ```

You might have a mismatch in your framework versions. Make sure you're running the app in dotnet version >= the version you're testing on.

I'm using https://github.com/golangci/golangci-lint/releases/tag/v1.49.0 atm, which installs gocritic v0.6.4, so I think I'll have to wait until that gets updated. Does it make sense to move/duplicate this issue under https://github.com/golangci/golangci-lint repo?

You can define a new dialect that doesn't use ` AS ` to define aliases: ```golang o := goqu.DefaultDialectOptions() o.AsFragment = []byte(" ") goqu.RegisterDialect("oracle", o) ```

The same query could also be expressed as: ```sql DELETE FROM table1 t1 WHERE t1.id IN (SELECT id from table2) ```

While I agree with everything you said, (correct me if I'm missing anything) exposing a setting on the admin side is only available through module configurations. There isn't any control...

> @abdusco, I don't follow you here - maybe you meant to comment on the other issue (WireMail feature request)? Yeah, I noticed it after posting the comment, but didn't...

@chapmanc If you already have an index, you should be able to use `... ON CONFLICT ON CONSTRAINT ...` syntax https://www.postgresql.org/docs/current/sql-insert.html#SQL-ON-CONFLICT ```golang q := goqu.Insert("table").OnConflict(goqu.DoUpdate( "on constraint my_index", goqu.Record{ "id":...

@spiralw I wouldn't hold my breath. The library looks abandoned. I even emailed the author for getting contribution rights a couple months ago, but haven't received any response.