Skip to content

Commit

Permalink
update the show syntax to match the vschema ddl changes
Browse files Browse the repository at this point in the history
Make the show syntax consistent:
`show vschema vindexes`
`show vschema tables`

Signed-off-by: Michael Demmer <[email protected]>
  • Loading branch information
demmer committed Dec 7, 2018
1 parent 8ea642d commit ae79ffd
Show file tree
Hide file tree
Showing 5 changed files with 1,247 additions and 1,241 deletions.
12 changes: 5 additions & 7 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1198,20 +1198,18 @@ var (
}, {
input: "show session variables",
output: "show session variables",
}, {
input: "show vindexes",
output: "show vindexes",
}, {
input: "show vindexes on t",
output: "show vindexes on t",
}, {
input: "show vitess_keyspaces",
}, {
input: "show vitess_shards",
}, {
input: "show vitess_tablets",
}, {
input: "show vschema_tables",
input: "show vschema tables",
}, {
input: "show vschema vindexes",
}, {
input: "show vschema vindexes on t",
}, {
input: "show warnings",
output: "show warnings",
Expand Down
Loading

0 comments on commit ae79ffd

Please sign in to comment.