@@ -1156,23 +1156,23 @@ assignProcTypes(OpFamilyMember *member, Oid amoid, Oid typeoid,
1156
1156
(OidIsValid (member -> righttype )&& member -> righttype != typeoid ))
1157
1157
ereport (ERROR ,
1158
1158
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1159
- errmsg ("associated data types foropclass options parsing functions must match opclass input type" )));
1159
+ errmsg ("associated data types foroperator class options parsing functions must match opclass input type" )));
1160
1160
}
1161
1161
else
1162
1162
{
1163
1163
if (member -> lefttype != member -> righttype )
1164
1164
ereport (ERROR ,
1165
1165
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1166
- errmsg ("left and right associated data types foropclass options parsing functions must match" )));
1166
+ errmsg ("left and right associated data types foroperator class options parsing functions must match" )));
1167
1167
}
1168
1168
1169
1169
if (procform -> prorettype != VOIDOID ||
1170
1170
procform -> pronargs != 1 ||
1171
1171
procform -> proargtypes .values [0 ]!= INTERNALOID )
1172
1172
ereport (ERROR ,
1173
1173
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1174
- errmsg ("invalidopclass options parsing function" ),
1175
- errhint ("Valid signature ofopclass options parsing function is'%s' ." ,
1174
+ errmsg ("invalidoperator class options parsing function" ),
1175
+ errhint ("Valid signature ofoperator class options parsing function is%s ." ,
1176
1176
"(internal) RETURNS void" )));
1177
1177
}
1178
1178