mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
branches/zip: rec_print_old(), rec_print_comp(): Dump each field in a
separate line, so that the dumps can be read and compared more easily.
This commit is contained in:
parent
b4c28de045
commit
293d9e9f94
1 changed files with 4 additions and 5 deletions
|
@ -1599,10 +1599,10 @@ rec_print_old(
|
|||
fprintf(file, " SQL NULL, size %lu ",
|
||||
rec_get_nth_field_size(rec, i));
|
||||
}
|
||||
putc(';', file);
|
||||
}
|
||||
|
||||
putc('\n', file);
|
||||
putc(';', file);
|
||||
putc('\n', file);
|
||||
}
|
||||
|
||||
rec_validate_old(rec);
|
||||
}
|
||||
|
@ -1642,9 +1642,8 @@ rec_print_comp(
|
|||
fputs(" SQL NULL", file);
|
||||
}
|
||||
putc(';', file);
|
||||
putc('\n', file);
|
||||
}
|
||||
|
||||
putc('\n', file);
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
|
|
Loading…
Add table
Reference in a new issue