Skip to content

Commit 0ede14d

Browse files
committed
pathman: cleanup
1 parent d941ff4 commit 0ede14d

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

contrib/pg_pathman/pathman.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ List *irange_list_union(List *a, List *b);
149149
List *irange_list_intersect(List *a, List *b);
150150
int irange_list_length(List *rangeset);
151151
bool irange_list_find(List *rangeset, int index, bool *lossy);
152-
void print_irange(IndexRange ir);
153152

154153
/* Dynamic shared memory functions */
155154
void init_dsm_config(void);

contrib/pg_pathman/pg_pathman.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ handle_modification_query(Query *parse)
295295
if (irange_list_length(ranges) == 1)
296296
{
297297
IndexRange irange = (IndexRange) linitial_oid(ranges);
298-
// elog(WARNING, "lower: %d, upper: %d, lossy: %d", irange_lower(irange), irange_upper(irange), irange_is_lossy(irange));
299298
if (irange_lower(irange) == irange_upper(irange))
300299
{
301300
Oid *children = (Oid *) dsm_array_get_pointer(&prel->children);

contrib/pg_pathman/rangeset.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ print_irange(List *l)
6565
}
6666
#endif
6767

68-
void
69-
print_irange(IndexRange ir)
70-
{
71-
elog(WARNING, "[%d, %d], lossy: %d", irange_lower(ir), irange_upper(ir), irange_is_lossy(ir));
72-
}
73-
7468
/*
7569
* Make union of two index rage lists.
7670
*/

0 commit comments

Comments
 (0)