File tree 6 files changed +7
-141
lines changed 6 files changed +7
-141
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# Makefile for utils/adt
3
3
#
4
- # $PostgreSQL: pgsql/src/backend/utils/adt/Makefile,v 1.65 2007/08/21 01:11:18 tgl Exp $
4
+ # $PostgreSQL: pgsql/src/backend/utils/adt/Makefile,v 1.66 2007/08/27 01:39:24 tgl Exp $
5
5
#
6
6
7
7
subdir = src/backend/utils/adt
@@ -19,7 +19,7 @@ OBJS = acl.o arrayfuncs.o array_userfuncs.o arrayutils.o bool.o \
19
19
cash.o char.o date.o datetime.o datum.o domains.o \
20
20
enum.o float.o format_type.o \
21
21
geo_ops.o geo_selfuncs.o int.o int8.o like.o lockfuncs.o \
22
- misc.o nabstime.o name.o not_in.o numeric.o numutils.o \
22
+ misc.o nabstime.o name.o numeric.o numutils.o \
23
23
oid.o oracle_compat.o pseudotypes.o rowtypes.o \
24
24
regexp.o regproc.o ruleutils.o selfuncs.o \
25
25
tid.o timestamp.o varbit.o varchar.o varlena.o version.o xid.o \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 37
37
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
38
38
* Portions Copyright (c) 1994, Regents of the University of California
39
39
*
40
- * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.418 2007/08/25 01:06:25 tgl Exp $
40
+ * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.419 2007/08/27 01:39:24 tgl Exp $
41
41
*
42
42
*-------------------------------------------------------------------------
43
43
*/
53
53
*/
54
54
55
55
/* yyyymmddN */
56
- #define CATALOG_VERSION_NO 200708241
56
+ #define CATALOG_VERSION_NO 200708261
57
57
58
58
#endif
Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
9
9
* Portions Copyright (c) 1994, Regents of the University of California
10
10
*
11
- * $PostgreSQL: pgsql/src/include/catalog/pg_operator.h,v 1.154 2007/08/21 01:11:25 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/include/catalog/pg_operator.h,v 1.155 2007/08/27 01:39:24 tgl Exp $
12
12
*
13
13
* NOTES
14
14
* the genbki.sh script reads this file and generates .bki
@@ -290,8 +290,6 @@ DATA(insert OID = 622 ( "<" PGNSP PGUID b f f 700 700 16 623 625 float4lt s
290
290
DATA (insert OID = 623 ( ">" PGNSP PGUID b f f 700 700 16 622 624 float4gt scalargtsel scalargtjoinsel ));
291
291
DATA (insert OID = 624 ( "<=" PGNSP PGUID b f f 700 700 16 625 623 float4le scalarltsel scalarltjoinsel ));
292
292
DATA (insert OID = 625 ( ">=" PGNSP PGUID b f f 700 700 16 624 622 float4ge scalargtsel scalargtjoinsel ));
293
- DATA (insert OID = 626 ( "!!=" PGNSP PGUID b f f 23 25 16 0 0 int4notin - - ));
294
- DATA (insert OID = 627 ( "!!=" PGNSP PGUID b f f 26 25 16 0 0 oidnotin - - ));
295
293
DATA (insert OID = 630 ( "<>" PGNSP PGUID b f f 18 18 16 630 92 charne neqsel neqjoinsel ));
296
294
297
295
DATA (insert OID = 631 ( "<" PGNSP PGUID b f f 18 18 16 633 634 charlt scalarltsel scalarltjoinsel ));
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.464 2007/08/22 01:39:45 tgl Exp $
10
+ * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.465 2007/08/27 01:39:24 tgl Exp $
11
11
*
12
12
* NOTES
13
13
* The script catalog/genbki.sh reads this file and generates .bki
@@ -902,10 +902,6 @@ DESCR("convert int8 to int2");
902
902
DATA (insert OID = 754 ( int8 PGNSP PGUID 12 1 0 f f t f i 1 20 "21" _null_ _null_ _null_ int28 - _null_ ));
903
903
DESCR ("convert int2 to int8" );
904
904
905
- DATA (insert OID = 1285 ( int4notin PGNSP PGUID 12 1 0 f f t f s 2 16 "23 25" _null_ _null_ _null_ int4notin - _null_ ));
906
- DESCR ("not in" );
907
- DATA (insert OID = 1286 ( oidnotin PGNSP PGUID 12 1 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ oidnotin - _null_ ));
908
- DESCR ("not in" );
909
905
DATA (insert OID = 655 ( namelt PGNSP PGUID 12 1 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namelt - _null_ ));
910
906
DESCR ("less-than" );
911
907
DATA (insert OID = 656 ( namele PGNSP PGUID 12 1 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namele - _null_ ));
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.300 2007/08/21 01:11:30 tgl Exp $
10
+ * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.301 2007/08/27 01:39:25 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -418,10 +418,6 @@ extern Datum pg_tablespace_databases(PG_FUNCTION_ARGS);
418
418
extern Datum pg_rotate_logfile (PG_FUNCTION_ARGS );
419
419
extern Datum pg_sleep (PG_FUNCTION_ARGS );
420
420
421
- /* not_in.c */
422
- extern Datum int4notin (PG_FUNCTION_ARGS );
423
- extern Datum oidnotin (PG_FUNCTION_ARGS );
424
-
425
421
/* oid.c */
426
422
extern Datum oidin (PG_FUNCTION_ARGS );
427
423
extern Datum oidout (PG_FUNCTION_ARGS );
You can’t perform that action at this time.
0 commit comments