diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-03-15 03:24:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-03-15 03:24:32 +0000 |
commit | 4a9c2390638aefb00fdabcf37b0b4058a39c6a7d (patch) | |
tree | d06aa44712b668fbdf69ba3f7c379c889353393b /src/include/utils/builtins.h | |
parent | 265c283e1b81c46deffe770faf48959510632292 (diff) |
Fix brain death in !!= operator ... it's still pretty bogus
but at least now it does what it's supposed to do ...
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 9522169dcdc..47dbef4c67b 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.76 1999/03/14 16:44:01 momjian Exp $ + * $Id: builtins.h,v 1.77 1999/03/15 03:24:31 tgl Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -331,7 +331,7 @@ extern int32 userfntest(int i); #define NonNullValue(v,b) nonnullvalue(v,b) /* not_in.c */ -extern bool int4notin(int16 not_in_arg, char *relation_and_attr); +extern bool int4notin(int32 not_in_arg, char *relation_and_attr); extern bool oidnotin(Oid the_oid, char *compare); /* oid.c */ |