mirrorru
mirrorru
I found bug on generating specialized interface v.3.4.5, v.3.4.7 Source: ```GO package tmp type Maker[T any] interface { MakeSlice(capacity int) []T } type IntMaker interface { Maker[int] } ``` In...
Enter a constant for the driver name so that it can be used when connecting to the database via "database/sql" in the standard connection command. ```GO import "github.com/jackc/pgx/v5/stdlib" ... //...
Please add generation of "HumanString" method to make enum items "names", which differs from code-name. Its helpful to change "Meaning" on items, without changing code-name ``` // ENUM(new,active) type ClientStatus...