mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
psql: Improve unaligned expanded output for zero rows
This used to erroneously print an empty line. Now it prints nothing.
This commit is contained in:
parent
8ade58a4ea
commit
0343a59d11
@ -439,10 +439,13 @@ print_unaligned_vertical(const printTableContent *cont, FILE *fout)
|
||||
}
|
||||
|
||||
/* see above in print_unaligned_text() */
|
||||
if (cont->opt->recordSep.separator_zero)
|
||||
print_separator(cont->opt->recordSep, fout);
|
||||
else
|
||||
fputc('\n', fout);
|
||||
if (need_recordsep)
|
||||
{
|
||||
if (cont->opt->recordSep.separator_zero)
|
||||
print_separator(cont->opt->recordSep, fout);
|
||||
else
|
||||
fputc('\n', fout);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user