ksql/examples/example_service
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
..
example_service.go Deprecate Update() in favor of a better fn name: Patch() 2022-02-22 16:14:15 -03:00
example_service_test.go Deprecate Update() in favor of a better fn name: Patch() 2022-02-22 16:14:15 -03:00
mocks.go Breaking Change: changes the Exec() signature so it returns an extra value 2022-02-22 16:49:48 -03:00