Skip to content

Commit af36a64

Browse files
committed
pathman: sorting problems
1 parent 0344edd commit af36a64

File tree

2 files changed

+331
-3
lines changed

2 files changed

+331
-3
lines changed

contrib/pg_pathman/pathman.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#include "storage/dsm.h"
1919
#include "storage/lwlock.h"
2020

21+
#include "nodes/bitmapset.h"
22+
2123
/* Check PostgreSQL version */
2224
#if PG_VERSION_NUM < 90500
2325
#error "You are trying to build pg_pathman with PostgreSQL version lower than 9.5. Please, check you environment."
@@ -191,4 +193,6 @@ FmgrInfo *get_cmp_func(Oid type1, Oid type2);
191193
Oid create_partitions_bg_worker(Oid relid, Datum value, Oid value_type, bool *crashed);
192194
Oid create_partitions(Oid relid, Datum value, Oid value_type, bool *crashed);
193195

196+
char *bms_print(Bitmapset *bms);
197+
194198
#endif /* PATHMAN_H */

0 commit comments

Comments
 (0)