Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate Materialize command to vtctldclient #14184

Merged
merged 14 commits into from
Oct 8, 2023
Merged
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/main' into vtctldclient_materialize
Signed-off-by: Matt Lord <mattalord@gmail.com>
  • Loading branch information
mattlord committed Oct 8, 2023
commit 4825cc421f0c72dd9f264c0ccaed7b9e32ee6e2b
9 changes: 1 addition & 8 deletions go/cmd/vtctldclient/command/root.go
Original file line number Diff line number Diff line change
@@ -26,14 +26,6 @@ import (

"github.com/spf13/cobra"

// These imports ensure init()s within them get called and they register their commands/subcommands.
vreplcommon "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/common"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/lookupvindex"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/materialize"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/movetables"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/reshard"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/vdiff"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/workflow"
"vitess.io/vitess/go/trace"
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/servenv"
@@ -42,6 +34,7 @@ import (
// These imports ensure init()s within them get called and they register their commands/subcommands.
vreplcommon "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/common"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/lookupvindex"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/materialize"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/migrate"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/mount"
_ "vitess.io/vitess/go/cmd/vtctldclient/command/vreplication/movetables"
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.