diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-11-06 15:04:40 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-11-06 15:04:40 +0900 |
commit | add9182e59084faf57bb264fefcd39fbc93fb116 (patch) | |
tree | 2e25b2186ea57c94f178f650ad2bdb250baffda5 /src/include | |
parent | 8f045e242b2308473f5de532590454294e3d5683 (diff) | |
download | postgresql-add9182e59084faf57bb264fefcd39fbc93fb116.tar.gz postgresql-add9182e59084faf57bb264fefcd39fbc93fb116.zip |
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
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/fe_utils/print.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/fe_utils/print.h b/src/include/fe_utils/print.h index 83320d06bdd..b761349bc72 100644 --- a/src/include/fe_utils/print.h +++ b/src/include/fe_utils/print.h @@ -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 ... */ }; |