forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit542d781
committed
Disable silently generation of manifests with servers <= 12 in pg_basebackup
Since 0d8c9c1, pg_basebackup would generate an error if connected to abackend version older than 12 where backup manifests are not supported.Avoiding this error is possible by using the --no-manifest option.This error handling could be confusing for some users, where patching abackup script that interacts with multiple backend versions would causethe addition of --no-manifest to potentially not generate a backupmanifest even for Postgres 13 and newer versions. As we want toencourage the use of backup manifests as much as possible, this commitsilently disables manifests where not supported, instead of generatingan error.While on it, rework a bit the code to make it more consistent with thesurroundings when generating the BASE_BACKUP command.Per discussion with Andres Freund, Stephen Frost, Robert Haas, ÁlvaroHerrera, Kyotaro Horiguchi, Tom Lane, David Steele, and me.Author: Michael PaquierDiscussion:https://postgr.es/m/20200410080910.GZ1606@paquier.xyz1 parentf0ca378 commit542d781
1 file changed
+11
-18
lines changedLines changed: 11 additions & 18 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
108 | 108 |
| |
109 | 109 |
| |
110 | 110 |
| |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
111 | 116 |
| |
112 | 117 |
| |
113 | 118 |
| |
| |||
1770 | 1775 |
| |
1771 | 1776 |
| |
1772 | 1777 |
| |
1773 |
| - | |
| 1778 | + | |
1774 | 1779 |
| |
1775 | 1780 |
| |
1776 | 1781 |
| |
| |||
1836 | 1841 |
| |
1837 | 1842 |
| |
1838 | 1843 |
| |
1839 |
| - | |
1840 |
| - | |
1841 |
| - | |
1842 |
| - | |
1843 |
| - | |
1844 |
| - | |
1845 |
| - | |
1846 |
| - | |
1847 |
| - | |
1848 | 1844 |
| |
1849 | 1845 |
| |
1850 | 1846 |
| |
| |||
1853 | 1849 |
| |
1854 | 1850 |
| |
1855 | 1851 |
| |
1856 |
| - | |
1857 |
| - | |
1858 |
| - | |
1859 |
| - | |
1860 |
| - | |
1861 |
| - | |
1862 |
| - | |
1863 | 1852 |
| |
1864 | 1853 |
| |
1865 | 1854 |
| |
| |||
1883 | 1872 |
| |
1884 | 1873 |
| |
1885 | 1874 |
| |
1886 |
| - | |
| 1875 | + | |
1887 | 1876 |
| |
1888 | 1877 |
| |
1889 | 1878 |
| |
| |||
2589 | 2578 |
| |
2590 | 2579 |
| |
2591 | 2580 |
| |
| 2581 | + | |
| 2582 | + | |
| 2583 | + | |
| 2584 | + | |
2592 | 2585 |
| |
2593 | 2586 |
| |
2594 | 2587 |
| |
|
0 commit comments
Comments
(0)