We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentdf0eee9 commitc5aaba2Copy full SHA for c5aaba2
src/backend/catalog/pg_operator.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.7 1996/11/30 18:06:03 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.8 1996/12/26 17:46:07 momjian Exp $
11
12
* NOTES
13
* these routines moved here from commands/define.c and somewhat cleaned up.
@@ -551,7 +551,7 @@ OperatorDef(char *operatorName,
551
tup=SearchSysCacheTuple(PRONAME,
552
PointerGetDatum(restrictionName),
553
Int32GetDatum(5),
554
-ObjectIdGetDatum(typeId),
+PointerGetDatum(typeId),
555
0);
556
if (!HeapTupleIsValid(tup))
557
func_error("OperatorDef",restrictionName,5,typeId);
@@ -575,7 +575,7 @@ OperatorDef(char *operatorName,
575
576
PointerGetDatum(joinName),
577
578
-Int32GetDatum(typeId),
579
580
581
func_error("OperatorDef",joinName,5,typeId);