31{
32 bool result = true;
38 char *opclassname;
39 char *opfamilyname;
46
47
50 elog(
ERROR,
"cache lookup failed for operator class %u", opclassoid);
52
59
60
62
63
66
67
69 {
73
74
75
76
77
79 {
82 errmsg(
"bloom opfamily %s contains support procedure %s with cross-type registration",
83 opfamilyname,
85 result = false;
86 }
87
88
89
90
91
92 if (
procform->amproclefttype != opcintype)
93 continue;
94
95
97 {
101 break;
104 break;
105 default:
108 errmsg(
"bloom opfamily %s contains function %s with invalid support number %d",
109 opfamilyname,
112 result = false;
113 continue;
114 }
115
117 {
120 errmsg(
"bloom opfamily %s contains function %s with wrong signature for support number %d",
121 opfamilyname,
124 result = false;
125 }
126 }
127
128
130 {
133
134
135 if (
oprform->amopstrategy < 1 ||
137 {
140 errmsg(
"bloom opfamily %s contains operator %s with invalid strategy number %d",
141 opfamilyname,
144 result = false;
145 }
146
147
150 {
153 errmsg(
"bloom opfamily %s contains invalid ORDER BY specification for operator %s",
154 opfamilyname,
156 result = false;
157 }
158
159
163 {
166 errmsg(
"bloom opfamily %s contains operator %s with wrong signature",
167 opfamilyname,
169 result = false;
170 }
171 }
172
173
177 {
179
180
184
185
186
187
188
189
190
191
192
193 }
194
195
197 {
200 continue;
202 continue;
205 errmsg(
"bloom opclass %s is missing support function %d",
207 result = false;
208 }
209
213
214 return result;
215}
bool check_amproc_signature(Oid funcid, Oid restype, bool exact, int minargs, int maxargs,...)
bool check_amop_signature(Oid opno, Oid restype, Oid lefttype, Oid righttype)
List * identify_opfamily_groups(CatCList *oprlist, CatCList *proclist)
bool check_amoptsproc_signature(Oid funcid)
#define BLOOM_NSTRATEGIES
#define BLOOM_OPTIONS_PROC
#define OidIsValid(objectId)
void ReleaseCatCacheList(CatCList *list)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
#define HeapTupleIsValid(tuple)
static void * GETSTRUCT(const HeapTupleData *tuple)
char * get_opfamily_name(Oid opfid, bool missing_ok)
FormData_pg_amop * Form_pg_amop
FormData_pg_amproc * Form_pg_amproc
FormData_pg_opclass * Form_pg_opclass
static Datum ObjectIdGetDatum(Oid X)
char * format_procedure(Oid procedure_oid)
char * format_operator(Oid operator_oid)
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
#define SearchSysCacheList1(cacheId, key1)