aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-01-27 22:37:52 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-01-27 22:37:52 +0000
commit6ab9db7b7824df0536c2d360ac16707c89731e43 (patch)
tree28ac38ed1b469344ea92a7b1cc368d629c95ea32 /src/backend/tcop/postgres.c
parent83d7b271db7a4de2905f76dffb5338b1ab3b5afd (diff)
downloadpostgresql-6ab9db7b7824df0536c2d360ac16707c89731e43.tar.gz
postgresql-6ab9db7b7824df0536c2d360ac16707c89731e43.zip
Apply usage patches for European Dates patch from Keith
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 53554578dc2..3fdbef11dab 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.27 1997/01/26 20:15:06 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.28 1997/01/27 22:37:52 scrappy Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -753,6 +753,7 @@ static void usage(char* progname)
fprintf(stderr, " C: supress version info\n");
fprintf(stderr, " d: set debug level\n");
fprintf(stderr, " E: echo query before execution\n");
+ fprintf(stderr, " e turn on European date format\n");
fprintf(stderr, " F: turn off fsync\n");
fprintf(stderr, " f: forbid plantype generation\n");
fprintf(stderr, " i: don't execute the query, just show the plan tree\n");
@@ -1282,7 +1283,7 @@ PostgresMain(int argc, char *argv[])
*/
if (IsUnderPostmaster == false) {
puts("\nPOSTGRES backend interactive interface");
- puts("$Revision: 1.27 $ $Date: 1997/01/26 20:15:06 $");
+ puts("$Revision: 1.28 $ $Date: 1997/01/27 22:37:52 $");
}
/* ----------------