File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.34 1998/04/10 22:07:41 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.35 1998/05/13 03:44:23 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -317,7 +317,7 @@ _bt_skeycmp(Relation rel,
317
317
/* see comments about NULLs handling in btbuild */
318
318
if (entry -> sk_flags & SK_ISNULL ) /* key is NULL */
319
319
{
320
- Assert (entry -> sk_procedure == NullValueRegProcedure );
320
+ Assert (entry -> sk_procedure == F_NULLVALUE );
321
321
keyNull = true;
322
322
if (isNull )
323
323
compare = (strat == BTEqualStrategyNumber ) ? true : false;
@@ -665,7 +665,7 @@ _bt_compare(Relation rel,
665
665
/* see comments about NULLs handling in btbuild */
666
666
if (entry -> sk_flags & SK_ISNULL ) /* key is NULL */
667
667
{
668
- Assert (entry -> sk_procedure == NullValueRegProcedure );
668
+ Assert (entry -> sk_procedure == F_NULLVALUE );
669
669
if (null )
670
670
tmpres = (long ) 0 ; /* NULL "=" NULL */
671
671
else
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: pg_proc.h,v 1.57 1998/05/12 17:46:48 momjian Exp $
9
+ * $Id: pg_proc.h,v 1.58 1998/05/13 03:44:24 momjian Exp $
10
10
*
11
11
* NOTES
12
12
* The script catalog/genbki.sh reads this file and generates .bki
@@ -1225,7 +1225,6 @@ DESCR("equals");
1225
1225
1226
1226
DATA (insert OID = 1029 ( nullvalue PGUID 11 f t f 1 f 16 "0" 100 0 0 100 foo bar ));
1227
1227
DESCR ("(internal)" );
1228
- #define NullValueRegProcedure 1029
1229
1228
DATA (insert OID = 1030 ( nonnullvalue PGUID 11 f t f 1 f 16 "0" 100 0 0 100 foo bar ));
1230
1229
DESCR ("(internal)" );
1231
1230
DATA (insert OID = 1031 ( aclitemin PGUID 11 f t f 1 f 1033 "0" 100 0 0 100 foo bar ));
You can’t perform that action at this time.
0 commit comments