@@ -1212,23 +1212,23 @@ assignProcTypes(OpFamilyMember *member, Oid amoid, Oid typeoid,
1212
1212
(OidIsValid (member -> righttype )&& member -> righttype != typeoid ))
1213
1213
ereport (ERROR ,
1214
1214
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1215
- errmsg ("associated data types foropclass options parsing functions must match opclass input type" )));
1215
+ errmsg ("associated data types foroperator class options parsing functions must match opclass input type" )));
1216
1216
}
1217
1217
else
1218
1218
{
1219
1219
if (member -> lefttype != member -> righttype )
1220
1220
ereport (ERROR ,
1221
1221
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1222
- errmsg ("left and right associated data types foropclass options parsing functions must match" )));
1222
+ errmsg ("left and right associated data types foroperator class options parsing functions must match" )));
1223
1223
}
1224
1224
1225
1225
if (procform -> prorettype != VOIDOID ||
1226
1226
procform -> pronargs != 1 ||
1227
1227
procform -> proargtypes .values [0 ]!= INTERNALOID )
1228
1228
ereport (ERROR ,
1229
1229
(errcode (ERRCODE_INVALID_OBJECT_DEFINITION ),
1230
- errmsg ("invalidopclass options parsing function" ),
1231
- errhint ("Valid signature ofopclass options parsing function is'%s' ." ,
1230
+ errmsg ("invalidoperator class options parsing function" ),
1231
+ errhint ("Valid signature ofoperator class options parsing function is%s ." ,
1232
1232
"(internal) RETURNS void" )));
1233
1233
}
1234
1234