Skip to content

Commit 284ecc4

Browse files
author
Artur Zakirov
committed
Fix optional opclass functions
1 parent 1b4902e commit 284ecc4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rumvalidate.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,7 @@ rumvalidate(Oid opclassoid)
260260
continue; /* optional method */
261261
if (i == GIN_CONSISTENT_PROC || i == GIN_TRICONSISTENT_PROC)
262262
continue; /* don't need both, see check below loop */
263-
if (i == RUM_CONFIG_PROC || i == RUM_PRE_CONSISTENT_PROC ||
264-
i == RUM_ORDERING_PROC)
263+
if (i == RUM_PRE_CONSISTENT_PROC)
265264
continue;
266265
ereport(INFO,
267266
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION),

0 commit comments

Comments
 (0)