-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathdebug_print.c
106 lines (89 loc) · 2.14 KB
/
debug_print.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* ------------------------------------------------------------------------
*
* debug_print.c
* Print sophisticated structs as CSTRING
*
* Copyright (c) 2016, Postgres Professional
*
* ------------------------------------------------------------------------
*/
#include <unistd.h>
#include "rangeset.h"
#include "postgres.h"
#include "fmgr.h"
#include "executor/tuptable.h"
#include "nodes/bitmapset.h"
#include "nodes/parsenodes.h"
#include "nodes/pg_list.h"
#include "lib/stringinfo.h"
#include "utils/lsyscache.h"
/*
* Print Bitmapset as cstring.
*/
#ifdef __GNUC__
__attribute__((unused))
#endif
static char *
bms_print(Bitmapset *bms)
{
StringInfoData str;
int x;
initStringInfo(&str);
x = -1;
while ((x = bms_next_member(bms, x)) >= 0)
appendStringInfo(&str, " %d", x);
return str.data;
}
/*
* Print list of IndexRanges as cstring.
*/
#ifdef __GNUC__
__attribute__((unused))
#endif
static char *
rangeset_print(List *rangeset)
{
StringInfoData str;
ListCell *lc;
bool first_irange = true;
char lossy = 'L', /* Lossy IndexRange */
complete = 'C'; /* Complete IndexRange */
initStringInfo(&str);
foreach (lc, rangeset)
{
IndexRange irange = lfirst_irange(lc);
/* Append comma if needed */
if (!first_irange)
appendStringInfo(&str, ", ");
if (!is_irange_valid(irange))
appendStringInfo(&str, "X");
else if (irange_lower(irange) == irange_upper(irange))
appendStringInfo(&str, "%u%c",
irange_lower(irange),
(is_irange_lossy(irange) ? lossy : complete));
else
appendStringInfo(&str, "[%u-%u]%c",
irange_lower(irange), irange_upper(irange),
(is_irange_lossy(irange) ? lossy : complete));
first_irange = false;
}
return str.data;
}
/*
* Print IndexRange struct as cstring.
*/
#ifdef __GNUC__
__attribute__((unused))
#endif
static char *
irange_print(IndexRange irange)
{
StringInfoData str;
initStringInfo(&str);
appendStringInfo(&str, "{ valid: %s, lossy: %s, lower: %u, upper: %u }",
(is_irange_valid(irange) ? "true" : "false"),
(is_irange_lossy(irange) ? "true" : "false"),
irange_lower(irange),
irange_upper(irange));
return str.data;
}