Skip to content

Commit aa59208

Browse files
committed
cleanup
1 parent 12d047b commit aa59208

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pg_pathman.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -123,20 +123,6 @@ static void generate_mergeappend_paths(PlannerInfo *root, RelOptInfo *rel,
123123
#define ExtractConst(wcxt, node) \
124124
( IsA((node), Param) ? extract_const((wcxt), (Param *) (node)) : ((Const *) (node)) )
125125

126-
char *
127-
bms_print(Bitmapset *bms)
128-
{
129-
StringInfoData str;
130-
int x;
131-
132-
initStringInfo(&str);
133-
x = -1;
134-
while ((x = bms_next_member(bms, x)) >= 0)
135-
appendStringInfo(&str, " %d", x);
136-
137-
return str.data;
138-
}
139-
140126
/*
141127
* Entry point
142128
*/

0 commit comments

Comments
 (0)