@@ -95,7 +95,7 @@ hashvalidate(Oid opclassoid)
9595 {
9696 ereport (INFO ,
9797 (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" ,
9999 opfamilyname ,
100100 format_procedure (procform -> amproc ))));
101101 result = false;
@@ -110,7 +110,7 @@ hashvalidate(Oid opclassoid)
110110 {
111111 ereport (INFO ,
112112 (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" ,
114114 opfamilyname ,
115115 format_procedure (procform -> amproc ),
116116 procform -> amprocnum )));
@@ -127,7 +127,7 @@ hashvalidate(Oid opclassoid)
127127 default :
128128 ereport (INFO ,
129129 (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" ,
131131 opfamilyname ,
132132 format_procedure (procform -> amproc ),
133133 procform -> amprocnum )));
@@ -148,7 +148,7 @@ hashvalidate(Oid opclassoid)
148148 {
149149 ereport (INFO ,
150150 (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" ,
152152 opfamilyname ,
153153 format_operator (oprform -> amopopr ),
154154 oprform -> amopstrategy )));
@@ -161,7 +161,7 @@ hashvalidate(Oid opclassoid)
161161 {
162162 ereport (INFO ,
163163 (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" ,
165165 opfamilyname ,
166166 format_operator (oprform -> amopopr ))));
167167 result = false;
@@ -174,7 +174,7 @@ hashvalidate(Oid opclassoid)
174174 {
175175 ereport (INFO ,
176176 (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" ,
178178 opfamilyname ,
179179 format_operator (oprform -> amopopr ))));
180180 result = false;
@@ -186,7 +186,7 @@ hashvalidate(Oid opclassoid)
186186 {
187187 ereport (INFO ,
188188 (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" ,
190190 opfamilyname ,
191191 format_operator (oprform -> amopopr ))));
192192 result = false;
@@ -214,7 +214,7 @@ hashvalidate(Oid opclassoid)
214214 {
215215 ereport (INFO ,
216216 (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" ,
218218 opfamilyname ,
219219 format_type_be (thisgroup -> lefttype ),
220220 format_type_be (thisgroup -> righttype ))));
@@ -228,7 +228,7 @@ hashvalidate(Oid opclassoid)
228228 {
229229 ereport (INFO ,
230230 (errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
231- errmsg ("hash opclass %s is missing operator(s)" ,
231+ errmsg ("hash operator class \"%s\" is missing operator(s)" ,
232232 opclassname )));
233233 result = false;
234234 }
@@ -244,7 +244,7 @@ hashvalidate(Oid opclassoid)
244244 {
245245 ereport (INFO ,
246246 (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)" ,
248248 opfamilyname )));
249249 result = false;
250250 }
0 commit comments