Skip to content

Commit

Permalink
PR Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
macneale4 committed Jan 13, 2025
1 parent c6cd6b4 commit 6016c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/cmd/dolt/commands/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func (cmd ShowCmd) Exec(ctx context.Context, commandStr string, args []string, d
if dEnv == nil {
// Logic below requires a non-nil dEnv when --no-pretty is set.
// TODO: remove all usage of dEnv entirely from this command.
cli.PrintErrln("`\\show` is not fully supported in the SQL shell.")
cli.PrintErrln("`\\show --no-pretty` is not supported in the SQL shell.")
return 1
}

Expand Down Expand Up @@ -199,7 +199,7 @@ func (cmd ShowCmd) Exec(ctx context.Context, commandStr string, args []string, d
return 1
}
if dEnv == nil {
cli.PrintErrln("`dolt show (NON_COMMIT_HASH)` requires a local environment. Not intended to common use.")
cli.PrintErrln("`dolt show (NON_COMMIT_HASH)` requires a local environment. Not intended for common use.")
return 1
}
if !dEnv.DoltDB.Format().UsesFlatbuffers() {
Expand Down

0 comments on commit 6016c4a

Please sign in to comment.