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 parent3888b53 commitc42926fCopy full SHA for c42926f
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.34 1999/04/11 02:30:59 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.35 1999/04/23 00:50:57 tgl Exp $
11
12
* NOTES
13
* these routines moved here from commands/define.c and somewhat cleaned up.
@@ -916,6 +916,7 @@ OperatorUpd(Oid baseId, Oid commId, Oid negId)
916
}
917
918
/* if commutator and negator are different, do two updates */
919
+
920
if (HeapTupleIsValid(tup)&&
921
!(OidIsValid(((Form_pg_operator)GETSTRUCT(tup))->oprcom)))
922
{
@@ -935,6 +936,8 @@ OperatorUpd(Oid baseId, Oid commId, Oid negId)
935
936
replaces[Anum_pg_operator_oprcom-1]=' ';
937
938
939
+heap_endscan(pg_operator_scan);
940
941
/* check and update the negator, if necessary */
942
opKey[0].sk_argument=ObjectIdGetDatum(negId);
943