- Notifications
You must be signed in to change notification settings - Fork5
Commitf663935
committed
One last missing quoting bug in pg_dump:
now that sequence names are properly quoted for field defaults, mixedcase sequence names are generated. These are properly quoted in theCREATE SEQUENCE lines, but not in the SELECT nextval lines, as perbelow:CREATE SEQUENCE "Teams_TeamID_seq" start 10 increment 1 maxvalue2147483647 minvalue 1 cache 1 ;SELECT nextval ('Teams_TeamID_seq');This needs to be:SELECT nextval ('"Teams_TeamID_seq"');Patch included below.--Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu>1 parentbe38f75 commitf663935
2 files changed
+4
-4
lines changedLines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
111 | 111 |
| |
112 | 112 |
| |
113 | 113 |
| |
114 |
| - | |
| 114 | + | |
115 | 115 |
| |
116 | 116 |
| |
117 | 117 |
| |
| |||
157 | 157 |
| |
158 | 158 |
| |
159 | 159 |
| |
160 |
| - | |
| 160 | + | |
161 | 161 |
| |
162 | 162 |
| |
163 | 163 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
24 |
| - | |
| 24 | + | |
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
| |||
3192 | 3192 |
| |
3193 | 3193 |
| |
3194 | 3194 |
| |
3195 |
| - | |
| 3195 | + | |
3196 | 3196 |
| |
3197 | 3197 |
| |
3198 | 3198 |
| |
|
0 commit comments
Comments
(0)