Fix output for binary
keys in -verbose
mode.
#1559
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
When migrating a table with a
binary
key in-verbose
mode, different sequences of bytes may prevent execution output from being logged, or correctly logged, to the console.This happens because the
MigrationRange*Values
are printed to the screen without any type of encoding. One particularly problematic sequence is27
/0x1b
,Escape
, which causes the terminal to stop logging for the duration of the migration:This commit changes the to-string rendering for
binary
keys, rendering the values as a hex string rather than an unescaped series of bytes:While this build passes and has the expected outcome locally, I'm not positive that this change to
StringColumn
is used only for logging/debugging purposes. This is something I hope you can verify.script/cibuild
returns with no formatting errors, build errors or unit test errors.