- Notifications
You must be signed in to change notification settings - Fork5
Commita0f9358
committed
Fix incorrect pg_proc.proallargtypes entries for two built-in functions.
pg_sequence_parameters() and pg_identify_object() have had incorrectproallargtypes entries since 9.1 and 9.3 respectively. This was mostlymasked by the correct information in proargtypes, but a few operationssuch as pg_get_function_arguments() (and thus psql's \df display) wouldshow the wrong data types for these functions' input parameters.In HEAD, fix the wrong info, bump catversion, and add an opr_sanityregression test to catch future mistakes of this sort.In the back branches, just fix the wrong info so that installationsinitdb'd with future minor releases will have the right data. Wecan't force an initdb, and it doesn't seem like a good idea to adda regression test that will fail on existing installations.Andres Freund1 parentf0fedfe commita0f9358
File tree
4 files changed
+24
-3
lines changed- src
- include/catalog
- test/regress
- expected
- sql
4 files changed
+24
-3
lines changedLines 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: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1775 | 1775 |
| |
1776 | 1776 |
| |
1777 | 1777 |
| |
1778 |
| - | |
| 1778 | + | |
1779 | 1779 |
| |
1780 | 1780 |
| |
1781 | 1781 |
| |
| |||
2981 | 2981 |
| |
2982 | 2982 |
| |
2983 | 2983 |
| |
2984 |
| - | |
| 2984 | + | |
2985 | 2985 |
| |
2986 | 2986 |
| |
2987 | 2987 |
| |
|
Lines changed: 12 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
364 | 364 |
| |
365 | 365 |
| |
366 | 366 |
| |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
367 | 379 |
| |
368 | 380 |
| |
369 | 381 |
| |
|
Lines changed: 9 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
276 | 276 |
| |
277 | 277 |
| |
278 | 278 |
| |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
279 | 288 |
| |
280 | 289 |
| |
281 | 290 |
| |
|
0 commit comments
Comments
(0)