We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c91723 commit efc9a91Copy full SHA for efc9a91
src/backend/utils/cache/lsyscache.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.18 1998/08/11 18:28:18 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.19 1998/08/16 05:38:41 thomas Exp $
11
12
* NOTES
13
* Eventually, the index information should go through here, too.
@@ -220,7 +220,10 @@ get_opname(Oid opno)
220
return pstrdup(optup.oprname.data);
221
else
222
{
223
+ /* don't throw an error anymore; we want to continue... */
224
+#if FALSE
225
elog(ERROR, "can't look up operator %d\n", opno);
226
+#endif
227
return NULL;
228
}
229
0 commit comments