Skip to content

Commit

Permalink
Merge pull request #8542 from tamird/misc-cleanup
Browse files Browse the repository at this point in the history
storage: code movement
  • Loading branch information
tamird authored Aug 15, 2016
2 parents 78f6418 + 18e2067 commit 86f7e61
Show file tree
Hide file tree
Showing 20 changed files with 1,595 additions and 1,425 deletions.
5 changes: 3 additions & 2 deletions kv/send_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (

"github.com/cockroachdb/cockroach/roachpb"
"github.com/cockroachdb/cockroach/rpc"
"github.com/cockroachdb/cockroach/storage"
"github.com/cockroachdb/cockroach/testutils"
"github.com/cockroachdb/cockroach/util"
"github.com/cockroachdb/cockroach/util/hlc"
Expand Down Expand Up @@ -66,11 +67,11 @@ func (n Node) Batch(ctx context.Context, args *roachpb.BatchRequest) (*roachpb.B
}
return &roachpb.BatchResponse{}, nil
}
func (n Node) PollFrozen(_ context.Context, _ *roachpb.PollFrozenRequest) (*roachpb.PollFrozenResponse, error) {
func (n Node) PollFrozen(_ context.Context, _ *storage.PollFrozenRequest) (*storage.PollFrozenResponse, error) {
panic("unimplemented")
}

func (n Node) Reserve(_ context.Context, _ *roachpb.ReservationRequest) (*roachpb.ReservationResponse, error) {
func (n Node) Reserve(_ context.Context, _ *storage.ReservationRequest) (*storage.ReservationResponse, error) {
panic("unimplemented")
}

Expand Down
Loading

0 comments on commit 86f7e61

Please sign in to comment.