From 59db5d46308c2f9fbc82cfff7194cffd6924e59d Mon Sep 17 00:00:00 2001 From: Josh Kupershmidt Date: Wed, 19 Sep 2012 16:49:03 -0700 Subject: [PATCH] Make ordering of 'Options' printed by `pg_reorg --help` alphabetical. --- bin/pg_reorg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pg_reorg.c b/bin/pg_reorg.c index 55ce256..ea7dbe2 100755 --- a/bin/pg_reorg.c +++ b/bin/pg_reorg.c @@ -696,9 +696,9 @@ pgut_help(bool details) printf("Options:\n"); printf(" -a, --all reorg all databases\n"); - printf(" -t, --table=TABLE reorg specific table only\n"); printf(" -n, --no-order do vacuum full instead of cluster\n"); printf(" -o, --order-by=columns order by columns instead of cluster keys\n"); + printf(" -t, --table=TABLE reorg specific table only\n"); printf(" -T, --wait-timeout=secs timeout to cancel other backends on conflict\n"); printf(" -Z, --no-analyze don't analyze at end\n"); }