Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
postgresql-9.6
/
include
/
server
/
catalog
/
//proc/self/root/opt/postgresql-9.6/include/server/catalog/pg_operator_fn.h
/*------------------------------------------------------------------------- * * pg_operator_fn.h * prototypes for functions in catalog/pg_operator.c * * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/catalog/pg_operator_fn.h * *------------------------------------------------------------------------- */ #ifndef PG_OPERATOR_FN_H #define PG_OPERATOR_FN_H #include "catalog/objectaddress.h" #include "nodes/pg_list.h" extern ObjectAddress OperatorCreate(const char *operatorName, Oid operatorNamespace, Oid leftTypeId, Oid rightTypeId, Oid procedureId, List *commutatorName, List *negatorName, Oid restrictionId, Oid joinId, bool canMerge, bool canHash); extern ObjectAddress makeOperatorDependencies(HeapTuple tuple, bool isUpdate); extern void OperatorUpd(Oid baseId, Oid commId, Oid negId, bool isDelete); #endif /* PG_OPERATOR_FN_H */