-
We should support Searching and Sorting on the Templates page.
1. Searching: Search for templates by name
2. Sorting: Sort the default order by any Column
3. ~Filtering: Filtering does not make …
-
- unified mapping from chain types to db types
- define a proper db schema (consider pk/fk/idx)
- reduce the use of jsonb objects
- db should return its own types (models)
- https://github…
-
I just had a very confusing experience using modules for a solid hour, which was all caused because one of the tools I use renamed their HEAD branch from `master` to `main` and I hadn't noticed.
I …
-
### Version
1.27.0
### What happened?
I have Postgresql schema where I define overloaded function to handle many column types.
```
CREATE FUNCTION foo(text)
CREATE FUNCTION foo(text[])
…
-
### Version
1.27.0
### What happened?
I want to type-cast some query variables but it doesn't compile
### Relevant log output
```shell
❯ sqlc generate
line 15:8 no viable alternative …
-
### Version
1.26.0
### What happened?
When I select an enum array column in Postgres (pgx) with sqlc the generated type for that column is `[]interface{}`. For some reason this doesn't reprod…
-
the order by clause in the :many definition query should be set dynamically
```
-- name: ListOrders :many
select * from order where status = $1 order by @orderBy::text;
```
**Generated**
…
-
### What do you want to change?
Currently, I am in the process of replacing Ent with SQLC. Our workflow involves writing our database schema, generate functions that map to sql queries, which s…
-
I love cornucopia! I used sqlc in Go, and this is exactly the thing I needed in Rust!
Having used sqlc though, I was wondering whether the nullability of columns could be handled automatically. At …
-
### Version
1.22.0
### What happened?
I have to update the query that backs a materialized view.
To do this, I create a new temporary materialized view, `view_2`, drop the old view, `view_1`, a…