diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-26 13:26:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-26 13:26:52 +0000 |
commit | d703de298904870f30aba805dcebe49f32c4bd5d (patch) | |
tree | 46423a18aee2a89df2d52f99774f9623203e23ae | |
parent | c4a13c7e3c60174b3cb7940dbe835c11015e9a8c (diff) | |
download | postgresql-d703de298904870f30aba805dcebe49f32c4bd5d.tar.gz postgresql-d703de298904870f30aba805dcebe49f32c4bd5d.zip |
Let's see if using -c instead of -- style fixes the PGOPTIONS issue.
-rw-r--r-- | src/test/regress/pg_regress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index f64e00b643f..15285ddf181 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.52 2008/11/25 19:30:42 tgl Exp $ + * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.53 2008/11/26 13:26:52 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -723,7 +723,7 @@ initialize_environment(void) * the user's ability to set other variables through that. */ { - const char *my_pgoptions = "--intervalstyle=postgres_verbose"; + const char *my_pgoptions = "-c intervalstyle=postgres_verbose"; const char *old_pgoptions = getenv("PGOPTIONS"); char *new_pgoptions; |