File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4363,8 +4363,8 @@ SELECT * FROM parent WHERE key = 2400;
4363
4363
find the logs currently in use by the instance. Here is an example of
4364
4364
this file's content:
4365
4365
<programlisting>
4366
- stderr pg_log /postgresql.log
4367
- csvlog pg_log /postgresql.csv
4366
+ stderr log /postgresql.log
4367
+ csvlog log /postgresql.csv
4368
4368
</programlisting>
4369
4369
4370
4370
<filename>current_logfiles</filename> is recreated when a new log file
@@ -4466,7 +4466,7 @@ local0.* /var/log/postgresql
4466
4466
cluster data directory.
4467
4467
This parameter can only be set in the <filename>postgresql.conf</>
4468
4468
file or on the server command line.
4469
- The default is <literal>pg_log </literal>.
4469
+ The default is <literal>log </literal>.
4470
4470
</para>
4471
4471
</listitem>
4472
4472
</varlistentry>
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ CREATE FOREIGN TABLE pglog (
262
262
location text,
263
263
application_name text
264
264
) SERVER pglog
265
- OPTIONS ( filename '/home/josh/9.1/ data/pg_log /pglog.csv', format 'csv' );
265
+ OPTIONS ( filename '/home/josh/data/log /pglog.csv', format 'csv' );
266
266
</programlisting>
267
267
</para>
268
268
Original file line number Diff line number Diff line change @@ -3320,7 +3320,7 @@ static struct config_string ConfigureNamesString[] =
3320
3320
GUC_SUPERUSER_ONLY
3321
3321
},
3322
3322
& Log_directory ,
3323
- "pg_log " ,
3323
+ "log " ,
3324
3324
check_canonical_path , NULL , NULL
3325
3325
},
3326
3326
{
Original file line number Diff line number Diff line change 344
344
# (change requires restart)
345
345
346
346
# These are only used if logging_collector is on:
347
- #log_directory = 'pg_log' # directory where log files are written,
347
+ #log_directory = 'log' # directory where log files are written,
348
348
# can be absolute or relative to PGDATA
349
349
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
350
350
# can include strftime() escapes
Original file line number Diff line number Diff line change @@ -551,7 +551,7 @@ sub _backup_fs
551
551
$backup_path ,
552
552
filterfn => sub {
553
553
my $src = shift ;
554
- return ($src ne ' pg_log ' and $src ne ' postmaster.pid' );
554
+ return ($src ne ' log ' and $src ne ' postmaster.pid' );
555
555
});
556
556
557
557
if ($hot )
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ attempted.
48
48
49
49
RecursiveCopy::copypath('/some/path', '/empty/dir',
50
50
filterfn => sub {
51
- # omit pg_log and contents
51
+ # omit log/ and contents
52
52
my $src = shift;
53
- return $src ne 'pg_log ';
53
+ return $src ne 'log ';
54
54
}
55
55
);
56
56
You can’t perform that action at this time.
0 commit comments