-
### Version
1.17.2
### What happened?
Using IN with recursive CTE gives "relation does not exist".
On the added playground you can see that all queries, except GetAll3 do work.
The query…
-
### What do you want to change?
sqlc understands casting for postgresql and soon mysql. We should add it for sqlite as well.
Currently things are pretty broken: https://play.sqlc.dev/p/e653d75ac56…
-
### Version
Other
### What happened?
updated from v1.17.2 and get the following log when i run `sqlc generate`. I use brew to install sqlc and it looks like old versions are not being tracked in b…
-
go version go1.20.5 windows/386
![photo_2023-07-04_13-26-43](https://github.com/kyleconroy/sqlc/assets/108363098/3ca5525a-917f-4a96-a5df-92ef1f1273de)
-
### Version
1.18.0
### What happened?
When using `sqlite` as engine the `sqlc.embed()` functionality can not be used in queries.
Simple working example with PostgreSQL: https://play.sqlc.dev/p/4…
-
### Version
1.12.0
### What happened?
A bug happened!
### Relevant log output
```shell
ERROR: incorrect binary data format (SQLSTATE 22P03)
```
### Database schema
```sql
CREATE TABLE IF NOT E…
-
### What do you want to change?
curently if a field is type decimal in MySQL, the type of field generated in Go struct is string,
user need to convert it to decimal
auto support for convert will be…
-
### Version
Other
### What happened?
When I write a schema with " NUMERIC NOT NULL DEFAULT 1 " This returns a Golang file with a structure that has a type string. Why is this happening and how can …
-
### Version
1.18.0
### What happened?
Functions created for Postgres are not generating fields for returned row structs. For example:
```
type TestFuncSelectBlogRow struct {
}
```
I suspect …
-
### Version
Other
### What happened?
With sqlc 1.18.0.
I'm importing a schema from a Django app, by running `sqlite3` and dumping `.schema` into a file. This schema definition is exhaustive, and…