|
7 | 7 | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $Id: builtins.h,v 1.99 2000/01/26 05:58:37 momjian Exp $ |
| 10 | + * $Id: builtins.h,v 1.100 2000/02/10 19:51:52 momjian Exp $ |
11 | 11 | * |
12 | 12 | * NOTES |
13 | 13 | * This should normally only be included by fmgr.h. |
@@ -44,6 +44,8 @@ extern bool booleq(bool arg1, bool arg2); |
44 | 44 | externboolboolne(boolarg1,boolarg2); |
45 | 45 | externboolboollt(boolarg1,boolarg2); |
46 | 46 | externboolboolgt(boolarg1,boolarg2); |
| 47 | +externboolboolle(boolarg1,boolarg2); |
| 48 | +externboolboolge(boolarg1,boolarg2); |
47 | 49 | externboolistrue(boolarg1); |
48 | 50 | externboolisfalse(boolarg1); |
49 | 51 |
|
@@ -181,6 +183,7 @@ extern int32 btabstimecmp(AbsoluteTime a, AbsoluteTime b); |
181 | 183 | externint32btcharcmp(chara,charb); |
182 | 184 | externint32btnamecmp(NameData*a,NameData*b); |
183 | 185 | externint32bttextcmp(structvarlena*a,structvarlena*b); |
| 186 | +externint32btboolcmp(boola,boolb); |
184 | 187 |
|
185 | 188 | /* support routines for the rtree access method, by opclass */ |
186 | 189 | externBOX*rt_box_union(BOX*a,BOX*b); |
|