Dennis Setiawan

Results 7 issues of Dennis Setiawan

Hello , so i was trying to do benchmark for go-zero framework and got some weird result for the benchmark. Can you help to see wether or not something is...

Hello I already tried to deploy the apps , the heroku app turns out to be error. I'm wondering what did I do wrong or does the code got some...

## What happened? Related to this [PR](https://github.com/pomerium/pomerium/pull/4582/files), I used auth0 as idp , and we need to pass different client_id for each route if we want different applications to go...

bug
NeedsProposal

**Is your feature request related to a problem? Please describe.** This is related to envoy issues that previously blocked this. (https://github.com/envoyproxy/envoy/issues/1178) But the issue has been resolved recently. **Describe the...

NeedsProposal

I have this snippet of code that works correctly when scanning varchar[] into []string in postgresql ``` type OrderDB struct { ID string `db:"id"` Users []string `db:"users"` } rows, err...

I noticed something weird why can't we use ? in column name? `sql, args, err := sb.Select("test").Where("y = ?", 2).ToSql()` OK but `sql, args, err := sb.Select("test").Where("? = ?","y", 2).ToSql()`...

I want to insert array to the table , the following code does not work. ``` insertMap := map[string]interface{}{ order_column_id: input.OrderID, order_column_assigned_users: []string{userID}, } query, args, err := sq.Insert(ORDER_TABLE). SetMap(insertMap)....