diff options
author | Thomas G. Lockhart | 2002-08-04 06:33:59 +0000 |
---|---|---|
committer | Thomas G. Lockhart | 2002-08-04 06:33:59 +0000 |
commit | ce5dc562e6e650292ed148a1417d449c2d88d698 (patch) | |
tree | fcec64e4542c589c7d7bd70bd86fdd509395574c /src/include/utils/varbit.h | |
parent | af704cdfb4e5327395aa6419c28ad79f906c68f0 (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.h | 4 |
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 |