forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit37d0c2c
committed
Fix parallel safety markings for pg_start_backup.
Commit7117685 made pg_start_backupparallel-restricted rather than parallel-safe, because it now relieson backend-private state that won't be synchronized with the parallelworker. However, it didn't update pg_proc.h. Separately, AndreasKarlsson observed that system_views.sql neglected to reiterate theparallel-safety markings whe redefining various functions, includingthis one; so add a PARALLEL RESTRICTED declaration there to matchthe new value in pg_proc.h.1 parentf2f5e7e commit37d0c2c
File tree
3 files changed
+4
-3
lines changed- src
- backend/catalog
- include/catalog
3 files changed
+4
-3
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
922 | 922 |
| |
923 | 923 |
| |
924 | 924 |
| |
925 |
| - | |
| 925 | + | |
| 926 | + | |
926 | 927 |
| |
927 | 928 |
| |
928 | 929 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
56 |
| - | |
| 56 | + | |
57 | 57 |
| |
58 | 58 |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3107 | 3107 |
| |
3108 | 3108 |
| |
3109 | 3109 |
| |
3110 |
| - | |
| 3110 | + | |
3111 | 3111 |
| |
3112 | 3112 |
| |
3113 | 3113 |
| |
|
0 commit comments
Comments
(0)