The "show-log" command tries to give names to the rows to make it easier to
understand what's going on, but it's still important to see at least
partial UUIDs so that one can search the output for references to the rows
by UUID.
if (!old_name) {
if (new_name) {
- printf(" insert row %s:\n", new_name);
+ printf(" insert row %s (%.8s):\n", new_name, row_uuid);
} else {
printf(" insert row %.8s:\n", row_uuid);
}
} else {
- printf(" row %s:\n", old_name);
+ printf(" row %s (%.8s):\n", old_name, row_uuid);
}
if (columns->type == JSON_OBJECT) {