diff options
author | Stephen Frost <sfrost@snowman.net> | 2018-04-20 19:04:54 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2018-04-20 19:04:54 -0400 |
commit | a0fefbcb718fedd8f0198f74c3ae27933c92b090 (patch) | |
tree | c59ed4afabe8c88f3dbc143efd527e86b029363a /src/backend/commands/typecmds.c | |
parent | 676858bcb4c4d9d2d5ee63a87dbff01085984ee0 (diff) | |
download | postgresql-a0fefbcb718fedd8f0198f74c3ae27933c92b090.tar.gz postgresql-a0fefbcb718fedd8f0198f74c3ae27933c92b090.zip |
Fix a couple minor typos
In commit f0e4475, GetIndexOpClass was renamed to ResolveOpClass, but
the comment in typecmds.c didn't get the memo.
In objectaddress.c, missing 'of' in a comment.
Both noticed by Vik Fearing, patch is mine though.
Diffstat (limited to 'src/backend/commands/typecmds.c')
-rw-r--r-- | src/backend/commands/typecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index 7746d182589..175ecc8b484 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -1990,7 +1990,7 @@ findRangeSubOpclass(List *opcname, Oid subtype) opcid = GetDefaultOpClass(subtype, BTREE_AM_OID); if (!OidIsValid(opcid)) { - /* We spell the error message identically to GetIndexOpClass */ + /* We spell the error message identically to ResolveOpClass */ ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), errmsg("data type %s has no default operator class for access method \"%s\"", |