diff options
| author | Peter Eisentraut | 2006-01-05 10:07:46 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2006-01-05 10:07:46 +0000 |
| commit | 86c23a6eb28b0588644dcefeb33ef5a2aa8b9453 (patch) | |
| tree | d0497d119ef7cf861fc046c58326a42e47c16c39 /src/bin | |
| parent | 4e1712ea5499ad57d825eefa08e560dad715300c (diff) | |
Make all command-line options of postmaster and postgres the same. See
http://archives.postgresql.org/pgsql-hackers/2006-01/msg00151.php for the
complete plan.
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/initdb/initdb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 8aecb08a2c0..367b3083e0d 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -42,7 +42,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.105 2006/01/05 03:01:36 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.106 2006/01/05 10:07:46 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1686,10 +1686,10 @@ setup_sysviews(void) sysviews_setup = readfile(system_views_file); /* - * We use -N here to avoid backslashing stuff in system_views.sql + * We use -j here to avoid backslashing stuff in system_views.sql */ snprintf(cmd, sizeof(cmd), - "\"%s\" %s -N template1 >%s", + "\"%s\" %s -j template1 >%s", backend_exec, backend_options, DEVNULL); @@ -1870,10 +1870,10 @@ setup_schema(void) lines = readfile(info_schema_file); /* - * We use -N here to avoid backslashing stuff in information_schema.sql + * We use -j here to avoid backslashing stuff in information_schema.sql */ snprintf(cmd, sizeof(cmd), - "\"%s\" %s -N template1 >%s", + "\"%s\" %s -j template1 >%s", backend_exec, backend_options, DEVNULL); |
