-
Hi. I'm working on a feature for [sqlc](https://github.com/kyleconroy/sqlc) to do a bulk insert. sqlc generates a struct with the columns of the table, and I want to do a bulk insert of those.
Now …
-
goの中でどっちもまとめて返すエンドポイントは作成できるけど大変なのでsql書いたらその通りに取得するコード自動生成して欲しい
[sqlc preload Queries](https://github.com/kyleconroy/sqlc/tree/v1.4.0)参考になりそう
-
👋
Really cool project! I'm not sure if you need to parse any of the incoming queries, but you can use the official PostgreSQL parser easily from Go: https://github.com/pganalyze/pg_query_go
I u…
-
The `backup` command should take an optional text argument indicating the destination of the backup file. Some possibilities:
`dampf backup -` output to stdout
`dampf backup foo` output file name…
-
### Version
1.8.0
### What happened?
I'm not sure if it's a bug or I'm doing this thing in the wrong way
I expect `expDuration` to be a string type so the query would look like
```
UPDATE f…
-
### What do you want to change?
Given this query:
```sql
-- name: CategoryGetAllAndChildren :many
SELECT swipe_category.*,
sqlc.embed(swipe_sub_category)
FROM swipe_category
LEF…
-
### Version
1.25.0
### What happened?
A bug happened!
### Relevant log output
```shell
sqlc generate failed.
# package
query.sql:12:24: table alias "b" does not exist
```
### …
Panlq updated
9 months ago
-
**Is your feature request related to a problem? Please describe.**
Today users have two ways to query for a Universe leaf:
* `QueryProof`: allows to query based on a combination of: universe ID,…
-
I was reading [this](https://github.com/ent/ent/issues/3814) issue in closed issues section and i was facing the same issue in my project as well
We are unable to build the project in 16GB RAM.
It t…
-
Hi, when a query return a myriad of objects, the slice based solution is not very efficient, it would be great if it was possible to have a way to return some kind of iterator on the rows, something l…