go-jet
go-jet
@DevX86 I'll look into `pgx' when I find some time. My intuition tells me that even if pgx is 3x faster than pq with database/sql in a real production environment,...
Hi @kblomster , Had a similar thought. Luckily we have everything in place and we just have to export [CustomExpression](https://github.com/go-jet/jet/blob/b13f6ab08d1005e5f6f2d64695d26d639e1dacd7/internal/jet/expression.go#L281) func and [Token](https://github.com/go-jet/jet/blob/b13f6ab08d1005e5f6f2d64695d26d639e1dacd7/internal/jet/serializer.go#L105) type. This will allow you to write...
Yeah, the design is settled, so feel free to write up a PR.
With the release v2.12.0 users can now build custom expressions and operators using newly exposed `CustomExpression` and `Token` functions. ([wiki](https://github.com/go-jet/jet/wiki/FAQ#operators))
With Release v.2.12.0 there is partial support for set returning functions - [faq](https://github.com/go-jet/jet/wiki/FAQ#set-returning-functions). The whole statement doesn't have to be raw statement.
> @houten11 The documentation doesn't say anything about sql.Scanner. It says "type has to implement sql.Serializer and sql.Valuer interface." sql.Serializer isn't an interface. Should the docs be updated to say...
@PaluMacil Yeah, off course.