Alexey Palazhchenko

Results 348 comments of Alexey Palazhchenko

@tabarnhack But those changes are not enough to actually test agains MariaDB – you have to change Makefile too

I'm not sure I understand what you are asking for. May you please clarify what you want to achieve and what should be done?

Currently `reform` relies on `database/sql` and doesn't have third-party dependencies, even SQL drivers, so any driver can be used with right dialect. Is it possible to avoid this hard dependency?...

Can you tell me more about your use case? Will something like this work for you? ```go package reform // CheckDuplicate returns nil if err is nil or duplicate key...

`YYYY-MM-DD-HH-mm` prefix should be enforced only by `reform-db create-migration` CLI command. Go package should work with any versioning scheme as long as the version in file matches filename prefix, there...

I think the root cause is the same as in https://github.com/go-reform/reform/issues/237. It should be fixed in 1.4.1. May you check please?

Alternatively, we can check that list is empty, and do not perform a query at all. `InsertMulti` is one existing example.

Note: I was pointed out that some reflection-based ORMs are 4 times slower then reform or plain `database/sql`. May as well add this to README.

In that case we can't, it comes from `database/sql`, not from reform.