1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Reorganize format options of psql in alphabetical order

This makes the addition of new formats easier, and documentation lookups
easier.

Author: Daniel Vérité
Reviewed-by: Fabien Coelho
Discussion: https://postgr.es/m/alpine.DEB.2.20.1803081004241.2916@lancre
This commit is contained in:
Michael Paquier
2018-11-06 15:04:40 +09:00
parent 8f045e242b
commit add9182e59
4 changed files with 30 additions and 31 deletions

View File

@@ -26,14 +26,14 @@
enum printFormat
{
PRINT_NOTHING = 0, /* to make sure someone initializes this */
PRINT_UNALIGNED,
PRINT_ALIGNED,
PRINT_WRAPPED,
PRINT_HTML,
PRINT_ASCIIDOC,
PRINT_HTML,
PRINT_LATEX,
PRINT_LATEX_LONGTABLE,
PRINT_TROFF_MS
PRINT_TROFF_MS,
PRINT_UNALIGNED,
PRINT_WRAPPED
/* add your favourite output format here ... */
};