]> granicus.if.org Git - postgresql/commitdiff
Let's see if using -c instead of -- style fixes the PGOPTIONS issue.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Nov 2008 13:26:52 +0000 (13:26 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Nov 2008 13:26:52 +0000 (13:26 +0000)
src/test/regress/pg_regress.c

index f64e00b643fb0ce564372d3327778cc5b5414cc6..15285ddf181c458c8f3b6689909f263793001267 100644 (file)
@@ -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 = "-intervalstyle=postgres_verbose";
                const char *old_pgoptions = getenv("PGOPTIONS");
                char   *new_pgoptions;