mirror of
https://github.com/VinGarcia/ksql.git
synced 2025-07-08 03:28:56 +00:00
The signature was updated from - `Exec(...) (rowsAffected int64, _ error)` To: - `Exec(...) (ksql.Result, error)` Result is an interface, so it should be easy to mock, we are also providing a new builtin mock struct + constructor to make it even easier: Building new mock Result: `ksql.NewMockResult(lastInsertID int64, rowsAffected int64) Result`