forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit75b2f01
committed
Fix ALTER SYSTEM to cope with duplicate entries in postgresql.auto.conf.
ALTER SYSTEM itself normally won't make duplicate entries (althoughup till this patch, it was possible to confuse it by writing casevariants of a GUC's name). However, if some external tool has appendedentries to the file, that could result in duplicate entries for a singleGUC name. In such a situation, ALTER SYSTEM did exactly the wrong thing,because it replaced or removed only the first matching entry, leavingthe later one(s) still there and hence still determining the active value.This patch fixes that by making ALTER SYSTEM sweep through the file andremove all matching entries, then (if not ALTER SYSTEM RESET) append thenew setting to the end. This means entries will be in order of lastsetting rather than first setting, but that shouldn't hurt anything.Also, make the comparisons case-insensitive so that the right thingshappen if you do, say, ALTER SYSTEM SET "TimeZone" = 'whatever'.This has been broken since ALTER SYSTEM was invented, so back-patchto all supported branches.Ian Barwick, with minor mods by meDiscussion:https://postgr.es/m/aed6cc9f-98f3-2693-ac81-52bb0052307e@2ndquadrant.com1 parentb626483 commit75b2f01
1 file changed
+22
-25
lines changedLines changed: 22 additions & 25 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7837 | 7837 |
| |
7838 | 7838 |
| |
7839 | 7839 |
| |
| 7840 | + | |
7840 | 7841 |
| |
7841 | 7842 |
| |
7842 |
| - | |
7843 |
| - | |
| 7843 | + | |
| 7844 | + | |
| 7845 | + | |
| 7846 | + | |
| 7847 | + | |
| 7848 | + | |
7844 | 7849 |
| |
7845 |
| - | |
| 7850 | + | |
| 7851 | + | |
7846 | 7852 |
| |
7847 |
| - | |
7848 |
| - | |
7849 |
| - | |
7850 |
| - | |
7851 |
| - | |
7852 |
| - | |
7853 |
| - | |
| 7853 | + | |
| 7854 | + | |
| 7855 | + | |
7854 | 7856 |
| |
7855 |
| - | |
7856 |
| - | |
7857 |
| - | |
7858 |
| - | |
7859 |
| - | |
7860 |
| - | |
7861 |
| - | |
7862 |
| - | |
| 7857 | + | |
| 7858 | + | |
| 7859 | + | |
7863 | 7860 |
| |
7864 |
| - | |
7865 |
| - | |
7866 |
| - | |
7867 |
| - | |
7868 |
| - | |
| 7861 | + | |
| 7862 | + | |
| 7863 | + | |
| 7864 | + | |
7869 | 7865 |
| |
7870 |
| - | |
| 7866 | + | |
| 7867 | + | |
7871 | 7868 |
| |
7872 | 7869 |
| |
7873 |
| - | |
| 7870 | + | |
7874 | 7871 |
| |
7875 | 7872 |
| |
7876 | 7873 |
| |
|
0 commit comments
Comments
(0)