forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commite6555b4
committed
Simplify a couple of pg_dump and psql \d queries about index constraints
by joining to pg_constraint.conindid, instead of the former technique ofjoining indirectly through pg_depend. This is much more straightforwardand probably faster as well. I had originally desisted from changing thesequeries when conindid was added because I was worried about losingperformance, but if we join on conrelid as well as conindid then the indexon conrelid can be used when pg_constraint is large.1 parent4df5c6c commite6555b4
2 files changed
+30
-36
lines changedLines changed: 9 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 |
| - | |
| 28 | + | |
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
| |||
3956 | 3956 |
| |
3957 | 3957 |
| |
3958 | 3958 |
| |
| 3959 | + | |
| 3960 | + | |
| 3961 | + | |
| 3962 | + | |
| 3963 | + | |
3959 | 3964 |
| |
3960 | 3965 |
| |
3961 | 3966 |
| |
| |||
3975 | 3980 |
| |
3976 | 3981 |
| |
3977 | 3982 |
| |
3978 |
| - | |
3979 |
| - | |
3980 |
| - | |
3981 |
| - | |
3982 | 3983 |
| |
3983 |
| - | |
3984 |
| - | |
| 3984 | + | |
| 3985 | + | |
| 3986 | + | |
3985 | 3987 |
| |
3986 | 3988 |
| |
3987 | 3989 |
| |
|
Lines changed: 21 additions & 29 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
1417 | 1417 |
| |
1418 | 1418 |
| |
1419 | 1419 |
| |
1420 |
| - | |
1421 |
| - | |
1422 |
| - | |
1423 |
| - | |
1424 |
| - | |
1425 |
| - | |
1426 |
| - | |
| 1420 | + | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + | |
| 1424 | + | |
1427 | 1425 |
| |
1428 |
| - | |
1429 |
| - | |
1430 |
| - | |
1431 |
| - | |
1432 |
| - | |
1433 |
| - | |
1434 |
| - | |
| 1426 | + | |
| 1427 | + | |
| 1428 | + | |
| 1429 | + | |
| 1430 | + | |
1435 | 1431 |
| |
1436 | 1432 |
| |
1437 | 1433 |
| |
| |||
1553 | 1549 |
| |
1554 | 1550 |
| |
1555 | 1551 |
| |
1556 |
| - | |
1557 |
| - | |
1558 |
| - | |
1559 |
| - | |
1560 |
| - | |
1561 |
| - | |
1562 |
| - | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
1563 | 1557 |
| |
1564 |
| - | |
1565 |
| - | |
1566 |
| - | |
1567 |
| - | |
1568 |
| - | |
1569 |
| - | |
1570 |
| - | |
| 1558 | + | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + | |
| 1562 | + | |
1571 | 1563 |
| |
1572 | 1564 |
| |
1573 | 1565 |
| |
|
0 commit comments
Comments
(0)