forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit6578234
committed
Use optimized bitmap set function for membership test in postgres_fdw
Deparsing logic in postgres_fdw for locking, FROM clause (alias) and Var(column qualification) does not need to know the exact number of membersinvolved, which can be calculated with bms_num_members(), but just ifthere is more than one relation involved, which is what bms_membership()does. The latter is more performant than the former so this shaves acouple of cycles.Author: Daniel GustafssonReviewed-by: Ashutosh Bapat, Nathan BossartDiscussion:https://postgr.es/m/C73594E0-2B67-4E10-BB35-CDE0E41CC384@yesql.se1 parentfeced13 commit6578234
1 file changed
+3
-3
lines changedLines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1076 | 1076 |
| |
1077 | 1077 |
| |
1078 | 1078 |
| |
1079 |
| - | |
| 1079 | + | |
1080 | 1080 |
| |
1081 | 1081 |
| |
1082 | 1082 |
| |
| |||
1262 | 1262 |
| |
1263 | 1263 |
| |
1264 | 1264 |
| |
1265 |
| - | |
| 1265 | + | |
1266 | 1266 |
| |
1267 | 1267 |
| |
1268 | 1268 |
| |
| |||
2328 | 2328 |
| |
2329 | 2329 |
| |
2330 | 2330 |
| |
2331 |
| - | |
| 2331 | + | |
2332 | 2332 |
| |
2333 | 2333 |
| |
2334 | 2334 |
| |
|
0 commit comments
Comments
(0)