goqu icon indicating copy to clipboard operation
goqu copied to clipboard

SQL builder and query library for golang

Results 142 goqu issues
Sort by recently updated
recently updated
newest added

with goqu.ExOr this cannot be done as does not allow two times the same map key ``` sql, _, _ := goqu.From("test").Where(goqu.ExOr{ "from_user_id": nil, "from_user_id": "34afs", }).ToSQL() fmt.Println(sql) ``` The...

**Describe the bug** When using postgres dialect, inserting a row with an Array SQL column type (e.g. `text[]`) does not generate the correct SQL. For the values corresponding to that...

Please see the code at the bottom of this. I have a table with a column named "ts". this is a postgres timestamp without time zone. If I specify a...

**Is your feature request related to a problem? Please describe.** When listing rows in a table, it's often necessary to count the total without the limit. However we don't want...

I had trouble finding an answer in the docs, so I figured I'd ask. Does/How does Goqu protect against injection attacks?

**Describe the bug** not all order literal is composed of Literal and asc, order and order append function, should allow customer string to be passed like clickhouse, fill statement can...

Fix for feature request https://github.com/doug-martin/goqu/issues/343 As this is my first pull request for this project I need a little coaching. In order to actually use the new feature I had...

**Is your feature request related to a problem? Please describe.** There are several SQL dialects that support the QUALIFY clause. It just so happens that I need to build a...

**Is your feature request related to a problem? Please describe.** There are several SQL dialects that support the QUALIFY clause. One of those dialects is Teradata, the dialect I happen...

**Describe the bug** I'm planing to fork this repo to add a new feature. Before doing so I cloned this repo and tried to run the tests just to verify...