Tim van Dam

Results 28 comments of Tim van Dam
trafficstars

This would be great to have. From what I've gathered, Postgres, SQLite and MariaDB support `INSERT RETURNING` which could be used for this, but MySQL does not. I suppose this...

The return type of the first `useInnerJoinWith` is `JoinDatabaseQuery`. I think getting rid of the undefined would suffice for fixing this

Temporary workaround is manually specifying the useInnerJoin generic

I believe this is caused by `SQLiteConnectionPool`: it creates multiple `SQLiteConnection` instances which all have their own connection to `:memory:`. This means that each instance will be connected to its...

@marcj The failing tests fail because `maxConnections` is equal to `1`, while the tests request 2 connections. Shall I make it throw when calling `getConnection()` case when `maxConnections` is equal...

I think `undefined` would be more correct

It appears that there is more going wrong judging by the parameters of the `CREATE TEMPORARY TABLE`

Another fix would be to use `changeSet.item` to insert the current values. However this assumes that all fields were loaded. I think the best solution would be to replace `?`...