From: Tom Lane Date: Wed, 26 Nov 2008 13:26:52 +0000 (+0000) Subject: Let's see if using -c instead of -- style fixes the PGOPTIONS issue. X-Git-Tag: recoveryinfrav9~288 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=5a786d8f4e22bdd484a7246a879e1401b06a40e7;p=users%2Fsimon%2Fpostgres.git Let's see if using -c instead of -- style fixes the PGOPTIONS issue. --- diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index d7c4847c92..c5a564c894 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -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;