mirror of https://github.com/VinGarcia/ksql.git
Improve the description of the Provider interface
parent
ba6727b14a
commit
22fa8fdfa4
|
@ -68,7 +68,7 @@ The current interface is as follows and we plan on keeping
|
||||||
it with as little functions as possible, so don't expect many additions:
|
it with as little functions as possible, so don't expect many additions:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// Provider describes the public behavior of this ORM
|
// Provider describes the ksql public behavior
|
||||||
type Provider interface {
|
type Provider interface {
|
||||||
Insert(ctx context.Context, table Table, record interface{}) error
|
Insert(ctx context.Context, table Table, record interface{}) error
|
||||||
Update(ctx context.Context, table Table, record interface{}) error
|
Update(ctx context.Context, table Table, record interface{}) error
|
||||||
|
|
|
@ -14,7 +14,7 @@ var ErrRecordNotFound error = errors.Wrap(sql.ErrNoRows, "ksql: the query return
|
||||||
// ErrAbortIteration ...
|
// ErrAbortIteration ...
|
||||||
var ErrAbortIteration error = fmt.Errorf("ksql: abort iteration, should only be used inside QueryChunks function")
|
var ErrAbortIteration error = fmt.Errorf("ksql: abort iteration, should only be used inside QueryChunks function")
|
||||||
|
|
||||||
// Provider describes the public behavior of this ORM
|
// Provider describes the ksql public behavior
|
||||||
type Provider interface {
|
type Provider interface {
|
||||||
Insert(ctx context.Context, table Table, record interface{}) error
|
Insert(ctx context.Context, table Table, record interface{}) error
|
||||||
Update(ctx context.Context, table Table, record interface{}) error
|
Update(ctx context.Context, table Table, record interface{}) error
|
||||||
|
|
Loading…
Reference in New Issue