Closed
Description
Version
1.15.0
What happened?
When a create a table with a column type string
, which is not a postgres datatype:
create table test_table (
id string
);
the sqlc code generator does not return any errors. It generates a field in Go with type string
.
However, when the migration is applied, an error is returned since the datatype string
does not exist in postgres.
Relevant log output
No response
Database schema
No response
SQL queries
No response
Configuration
No response
Playground URL
https://play.sqlc.dev/p/377ff1e3c1bac823de845bd66dbffbee9ed4bb328e63f7c291297c6d256c7112
What operating system are you using?
No response
What database engines are you using?
No response
What type of code are you generating?
No response