Skip to content

Commit

Permalink
kvccl: move followerreadsccl under kvccl
Browse files Browse the repository at this point in the history
Package movement.
  • Loading branch information
nvanbenschoten committed Jul 15, 2020
1 parent b7430b5 commit b19794d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion pkg/ccl/ccl_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
_ "github.com/cockroachdb/cockroach/pkg/ccl/buildccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/changefeedccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/cliccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/followerreadsccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/gssapiccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/importccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/kvccl"
Expand Down
6 changes: 5 additions & 1 deletion pkg/ccl/kvccl/kvccl.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@

package kvccl

import _ "github.com/cockroachdb/cockroach/pkg/ccl/kvccl/kvtenantccl" // init hooks
import (
// ccl init hooks.
_ "github.com/cockroachdb/cockroach/pkg/ccl/kvccl/kvfollowerreadsccl"
_ "github.com/cockroachdb/cockroach/pkg/ccl/kvccl/kvtenantccl"
)
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//
// https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt

// Package followerreadsccl implements and injects the functionality needed to
// Package kvfollowerreadsccl implements and injects the functionality needed to
// expose follower reads to clients.
package followerreadsccl
package kvfollowerreadsccl

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt

package followerreadsccl
package kvfollowerreadsccl

import (
"context"
Expand Down

0 comments on commit b19794d

Please sign in to comment.