Commit 94232c90 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix typos

tablesapce -> tablespace
there -> their

These were introduced in 72d422a5, so no need to backpatch.
parent 7abc6859
...@@ -969,7 +969,7 @@ SELECT pg_stop_backup(); ...@@ -969,7 +969,7 @@ SELECT pg_stop_backup();
<para> <para>
It's also worth noting that the <function>pg_start_backup</> function It's also worth noting that the <function>pg_start_backup</> function
makes files named <filename>backup_label</> and makes files named <filename>backup_label</> and
<filename>tablesapce_map</> in the database cluster directory, <filename>tablespace_map</> in the database cluster directory,
which are removed by <function>pg_stop_backup</>. These files will of which are removed by <function>pg_stop_backup</>. These files will of
course be archived as a part of your backup dump file. The backup label course be archived as a part of your backup dump file. The backup label
file includes the label string you gave to <function>pg_start_backup</>, file includes the label string you gave to <function>pg_start_backup</>,
......
...@@ -6203,7 +6203,7 @@ StartupXLOG(void) ...@@ -6203,7 +6203,7 @@ StartupXLOG(void)
* safest to just remove them always and let them be rebuilt during the * safest to just remove them always and let them be rebuilt during the
* first backend startup. These files needs to be removed from all * first backend startup. These files needs to be removed from all
* directories including pg_tblspc, however the symlinks are created only * directories including pg_tblspc, however the symlinks are created only
* after reading tablesapce_map file in case of archive recovery from * after reading tablespace_map file in case of archive recovery from
* backup, so needs to clear old relcache files here after creating * backup, so needs to clear old relcache files here after creating
* symlinks. * symlinks.
*/ */
...@@ -9728,7 +9728,7 @@ XLogFileNameP(TimeLineID tli, XLogSegNo segno) ...@@ -9728,7 +9728,7 @@ XLogFileNameP(TimeLineID tli, XLogSegNo segno)
* A non-exclusive backup is used for the streaming base backups (see * A non-exclusive backup is used for the streaming base backups (see
* src/backend/replication/basebackup.c). The difference to exclusive backups * src/backend/replication/basebackup.c). The difference to exclusive backups
* is that the backup label and tablespace map files are not written to disk. * is that the backup label and tablespace map files are not written to disk.
* Instead, there would-be contents are returned in *labelfile and *tblspcmapfile, * Instead, their would-be contents are returned in *labelfile and *tblspcmapfile,
* and the caller is responsible for including them in the backup archive as * and the caller is responsible for including them in the backup archive as
* 'backup_label' and 'tablespace_map'. There can be many non-exclusive backups * 'backup_label' and 'tablespace_map'. There can be many non-exclusive backups
* active at the same time, and they don't conflict with an exclusive backup * active at the same time, and they don't conflict with an exclusive backup
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment