branches/zip: dtuple_print(): Dump each field in a separate line,

so that the dumps can be read and compared more easily.
This is related to the change to rec_print_old() and rec_print_comp()
in r3148.
This commit is contained in:
marko 2008-11-21 08:11:18 +00:00
parent ed2321931c
commit c8fd3a51ff

View file

@ -534,9 +534,9 @@ dtuple_print(
dfield_print_raw(f, dtuple_get_nth_field(tuple, i));
putc(';', f);
putc('\n', f);
}
putc('\n', f);
ut_ad(dtuple_validate(tuple));
}