summaryrefslogtreecommitdiff
path: root/src/include/utils/varbit.h
diff options
context:
space:
mode:
authorThomas G. Lockhart2002-08-04 06:33:59 +0000
committerThomas G. Lockhart2002-08-04 06:33:59 +0000
commitce5dc562e6e650292ed148a1417d449c2d88d698 (patch)
treefcec64e4542c589c7d7bd70bd86fdd509395574c /src/include/utils/varbit.h
parentaf704cdfb4e5327395aa6419c28ad79f906c68f0 (diff)
Allow bit string constants without fully-specified length declaration.
Implement conversion between 8-byte integers and bit strings. Similar to what is done for 4-byte integers.
Diffstat (limited to 'src/include/utils/varbit.h')
-rw-r--r--src/include/utils/varbit.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/varbit.h b/src/include/utils/varbit.h
index 42ea863151e..8dff3166d56 100644
--- a/src/include/utils/varbit.h
+++ b/src/include/utils/varbit.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: varbit.h,v 1.14 2002/06/20 20:29:53 momjian Exp $
+ * $Id: varbit.h,v 1.15 2002/08/04 06:33:56 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -88,6 +88,8 @@ extern Datum bitlength(PG_FUNCTION_ARGS);
extern Datum bitoctetlength(PG_FUNCTION_ARGS);
extern Datum bitfromint4(PG_FUNCTION_ARGS);
extern Datum bittoint4(PG_FUNCTION_ARGS);
+extern Datum bitfromint8(PG_FUNCTION_ARGS);
+extern Datum bittoint8(PG_FUNCTION_ARGS);
extern Datum bitposition(PG_FUNCTION_ARGS);
#endif