You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing vtctldclient vdiff show, a summary is generated based on the raw RPC outputs containing query rows, fields, etc. This summary is useful for humans using the CLI, but is also useful for automating the VDiff flow. Being able to import the summary logic as a library means that callers don't need to parse the entire VDiffShowResponse type to generate a report similar to vtctldclient.
Use Case(s)
Creating workflow automation tooling in Go, and being able to programmatically check the validity of workflows via VDiff.
The text was updated successfully, but these errors were encountered:
Factor out buildSingleSummary as vdiff.Summarize, which generates a summary of
the VDiff operation based on the VDiffShow RPC response.
Fixes#16780.
Signed-off-by: Matt Layher <[email protected]>
Feature Description
When executing
vtctldclient vdiff show
, a summary is generated based on the raw RPC outputs containing query rows, fields, etc. This summary is useful for humans using the CLI, but is also useful for automating the VDiff flow. Being able to import the summary logic as a library means that callers don't need to parse the entireVDiffShowResponse
type to generate a report similar tovtctldclient
.Use Case(s)
Creating workflow automation tooling in Go, and being able to programmatically check the validity of workflows via VDiff.
The text was updated successfully, but these errors were encountered: