@@ -95,7 +95,7 @@ hashvalidate(Oid opclassoid)
95
95
{
96
96
ereport (INFO ,
97
97
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
98
- errmsg ("hash opfamily %s contains support procedure %s with cross-type registration" ,
98
+ errmsg ("hash operator family \"%s\" contains support procedure %s with cross-type registration" ,
99
99
opfamilyname ,
100
100
format_procedure (procform -> amproc ))));
101
101
result = false;
@@ -110,7 +110,7 @@ hashvalidate(Oid opclassoid)
110
110
{
111
111
ereport (INFO ,
112
112
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
113
- errmsg ("hash opfamily %s contains function %s with wrong signature for support number %d" ,
113
+ errmsg ("hash operator family \"%s\" contains function %s with wrong signature for support number %d" ,
114
114
opfamilyname ,
115
115
format_procedure (procform -> amproc ),
116
116
procform -> amprocnum )));
@@ -127,7 +127,7 @@ hashvalidate(Oid opclassoid)
127
127
default :
128
128
ereport (INFO ,
129
129
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
130
- errmsg ("hash opfamily %s contains function %s with invalid support number %d" ,
130
+ errmsg ("hash operator family \"%s\" contains function %s with invalid support number %d" ,
131
131
opfamilyname ,
132
132
format_procedure (procform -> amproc ),
133
133
procform -> amprocnum )));
@@ -148,7 +148,7 @@ hashvalidate(Oid opclassoid)
148
148
{
149
149
ereport (INFO ,
150
150
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
151
- errmsg ("hash opfamily %s contains operator %s with invalid strategy number %d" ,
151
+ errmsg ("hash operator family \"%s\" contains operator %s with invalid strategy number %d" ,
152
152
opfamilyname ,
153
153
format_operator (oprform -> amopopr ),
154
154
oprform -> amopstrategy )));
@@ -161,7 +161,7 @@ hashvalidate(Oid opclassoid)
161
161
{
162
162
ereport (INFO ,
163
163
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
164
- errmsg ("hash opfamily %s contains invalid ORDER BY specification for operator %s" ,
164
+ errmsg ("hash operator family \"%s\" contains invalid ORDER BY specification for operator %s" ,
165
165
opfamilyname ,
166
166
format_operator (oprform -> amopopr ))));
167
167
result = false;
@@ -174,7 +174,7 @@ hashvalidate(Oid opclassoid)
174
174
{
175
175
ereport (INFO ,
176
176
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
177
- errmsg ("hash opfamily %s contains operator %s with wrong signature" ,
177
+ errmsg ("hash operator family \"%s\" contains operator %s with wrong signature" ,
178
178
opfamilyname ,
179
179
format_operator (oprform -> amopopr ))));
180
180
result = false;
@@ -186,7 +186,7 @@ hashvalidate(Oid opclassoid)
186
186
{
187
187
ereport (INFO ,
188
188
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
189
- errmsg ("hash opfamily %s lacks support function for operator %s" ,
189
+ errmsg ("hash operator family \"%s\" lacks support function for operator %s" ,
190
190
opfamilyname ,
191
191
format_operator (oprform -> amopopr ))));
192
192
result = false;
@@ -214,7 +214,7 @@ hashvalidate(Oid opclassoid)
214
214
{
215
215
ereport (INFO ,
216
216
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
217
- errmsg ("hash opfamily %s is missing operator(s) for types %s and %s" ,
217
+ errmsg ("hash operator family \"%s\" is missing operator(s) for types %s and %s" ,
218
218
opfamilyname ,
219
219
format_type_be (thisgroup -> lefttype ),
220
220
format_type_be (thisgroup -> righttype ))));
@@ -228,7 +228,7 @@ hashvalidate(Oid opclassoid)
228
228
{
229
229
ereport (INFO ,
230
230
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
231
- errmsg ("hash opclass %s is missing operator(s)" ,
231
+ errmsg ("hash operator class \"%s\" is missing operator(s)" ,
232
232
opclassname )));
233
233
result = false;
234
234
}
@@ -244,7 +244,7 @@ hashvalidate(Oid opclassoid)
244
244
{
245
245
ereport (INFO ,
246
246
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
247
- errmsg ("hash opfamily %s is missing cross-type operator(s)" ,
247
+ errmsg ("hash operator family \"%s\" is missing cross-type operator(s)" ,
248
248
opfamilyname )));
249
249
result = false;
250
250
}
0 commit comments