type Checker interface {
// ShouldAutocommit returns true if it should autocommit in the context. ShouldAutocommit(ctx context.Context) (bool, error)
}
Checker is the interface checks if it should autocommit in the context.
TODO: Choose a better name.