go-jet

Results 147 comments of go-jet

Hi @otto-nordander-yubico, I don't think we can do much in jet regarding this limit. Identifier length limit is purely postgres config. And according to [google](https://www.postgresql.org/message-id/9DE48F36-C0CB-4770-985F-0AF5E113737E%40gmail.com), you can either recompile "compile...

Identifier length limit is postgres compile time config. Meaning to change the config you need to download postgres source code, change the config and compile postgres your self. This obviously...

`EQ` operator should be able to accept any expression not just a parameter. For instance: ```golang Accounts.ID.EQ(Book.ID.ADD(Int(3)) ``` Since golang doesn't allow method name overloading this is the only way....

Then it wouldn't be a `Type safe SQL builder` anymore.

The last time I tried with generics, the issue was that it was not possible to have generic method on a type. The whole type has to be generic. Maybe...

> @go-jet Something like this? Yeah, looks good.

Could you share the error message.