提交 0fdb2f7d 编写于 作者: H Heikki Linnakangas

Silence compiler warning.

Not all compilers understand that elog(ERROR, ...) never returns.
上级 b152c6cd
......@@ -598,7 +598,10 @@ ginPlaceToPage(GinBtree btree, GinBtreeStack *stack,
return false;
}
else
{
elog(ERROR, "unknown return code from GIN placeToPage method: %d", rc);
return false; /* keep compiler quiet */
}
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册