From 5a786d8f4e22bdd484a7246a879e1401b06a40e7 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 26 Nov 2008 13:26:52 +0000 Subject: [PATCH] Let's see if using -c instead of -- style fixes the PGOPTIONS issue. --- src/test/regress/pg_regress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5