ksql/examples
Vinícius Garcia 2e1aa80770 Breaking Change: changes the Exec() signature so it returns an extra value
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`
2022-02-22 16:49:48 -03:00
..
all_adapters Update Exec signature to return the number of affected rows 2021-11-26 22:13:56 -03:00
crud Deprecate Update() in favor of a better fn name: Patch() 2022-02-22 16:14:15 -03:00
example_service Breaking Change: changes the Exec() signature so it returns an extra value 2022-02-22 16:49:48 -03:00