* bms_equal_any * True if relids is bms_equal to any member of relids_list * * Perhaps this should be in bitmapset.c someday. */
| 712 | * Perhaps this should be in bitmapset.c someday. |
| 713 | */ |
| 714 | static bool |
| 715 | bms_equal_any(Relids relids, List *relids_list) |
| 716 | { |
| 717 | ListCell *lc; |
| 718 | |
| 719 | foreach(lc, relids_list) |
| 720 | { |
| 721 | if (bms_equal(relids, (Relids) lfirst(lc))) |
| 722 | return true; |
| 723 | } |
| 724 | return false; |
| 725 | } |
| 726 | |
| 727 | |
| 728 | /* |
no test coverage detected