From 6c96188cb5561bc6d58e43243fa0a76bfa938a9b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 27 Aug 2007 01:39:25 +0000 Subject: Remove the 'not in' operator (!!=). This was a hangover from Berkeley days that was obsolete the moment we had IN (SELECT ...) capability. It's arguably a security hole since it applied no permissions check to the table it searched, and since it was never documented anywhere, removing it seems more appropriate than fixing it. --- src/include/utils/builtins.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/include/utils/builtins.h') diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index ee0532f63b7..8feb54c2080 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.300 2007/08/21 01:11:30 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.301 2007/08/27 01:39:25 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -418,10 +418,6 @@ extern Datum pg_tablespace_databases(PG_FUNCTION_ARGS); extern Datum pg_rotate_logfile(PG_FUNCTION_ARGS); extern Datum pg_sleep(PG_FUNCTION_ARGS); -/* not_in.c */ -extern Datum int4notin(PG_FUNCTION_ARGS); -extern Datum oidnotin(PG_FUNCTION_ARGS); - /* oid.c */ extern Datum oidin(PG_FUNCTION_ARGS); extern Datum oidout(PG_FUNCTION_ARGS); -- cgit v1.2.3