diff options
| author | Tom Lane | 2015-11-07 21:40:15 +0000 |
|---|---|---|
| committer | Tom Lane | 2015-11-07 21:40:15 +0000 |
| commit | c5e86ea932794051d2fe3bd26ce4c03981b0b826 (patch) | |
| tree | d4d53a3cfa7dfa0b45fcc5463a0da0e8768d7947 /src/include/utils | |
| parent | 9042f583429ef880665dd36b7bcad45ba62dea7b (diff) | |
Add "xid <> xid" and "xid <> int4" operators.
The corresponding "=" operators have been there a long time, and not
having their negators is a bit of a nuisance.
Michael Paquier
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/builtins.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 130f5e23bcd..e610bf305d4 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -860,6 +860,7 @@ extern Datum xidout(PG_FUNCTION_ARGS); extern Datum xidrecv(PG_FUNCTION_ARGS); extern Datum xidsend(PG_FUNCTION_ARGS); extern Datum xideq(PG_FUNCTION_ARGS); +extern Datum xidneq(PG_FUNCTION_ARGS); extern Datum xid_age(PG_FUNCTION_ARGS); extern Datum mxid_age(PG_FUNCTION_ARGS); extern int xidComparator(const void *arg1, const void *arg2); |
