Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 0 additions & 71 deletions bats/query-diff.bats

This file was deleted.

6 changes: 0 additions & 6 deletions go/cmd/dolt/commands/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ func (cmd DiffCmd) createArgParser() *argparser.ArgParser {
ap.SupportsString(FormatFlag, "r", "result output format", "How to format diff output. Valid values are tabular & sql. Defaults to tabular. ")
ap.SupportsString(whereParam, "", "column", "filters columns based on values in the diff. See {{.EmphasisLeft}}dolt diff --help{{.EmphasisRight}} for details.")
ap.SupportsInt(limitParam, "", "record_count", "limits to the first N diffs.")
ap.SupportsString(QueryFlag, "q", "query", "diffs the results of a query at two commits")
ap.SupportsFlag(CachedFlag, "c", "Show only the unstaged data changes.")
return ap
}
Expand All @@ -161,11 +160,6 @@ func (cmd DiffCmd) Exec(ctx context.Context, commandStr string, args []string, d
return HandleVErrAndExitCode(errhand.VerboseErrorFromError(err), usage)
}

if dArgs.query != "" {
verr := diffQuery(ctx, dEnv, fromRoot, toRoot, dArgs.query)
return HandleVErrAndExitCode(verr, usage)
}

verr := diffUserTables(ctx, fromRoot, toRoot, dArgs)

if verr != nil {
Expand Down
175 changes: 0 additions & 175 deletions go/cmd/dolt/commands/query_diff.go

This file was deleted.

Loading