From 4a9c2390638aefb00fdabcf37b0b4058a39c6a7d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 15 Mar 1999 03:24:32 +0000 Subject: Fix brain death in !!= operator ... it's still pretty bogus but at least now it does what it's supposed to do ... --- src/include/utils/builtins.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/utils/builtins.h') 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 */ -- cgit v1.2.3