summaryrefslogtreecommitdiff
path: root/src/include/utils/int8.h
diff options
context:
space:
mode:
authorPeter Eisentraut2000-10-24 20:16:48 +0000
committerPeter Eisentraut2000-10-24 20:16:48 +0000
commitb0c1c53a4338f1982a44006af205917d3a8e0670 (patch)
treea9539208551dfb378d2e8e56d8bbc8d87b5e5a88 /src/include/utils/int8.h
parentfa9357d0b75dcd4e3910a7100545cf78cc231f68 (diff)
Integer binary operators, from Marko Kreen <[email protected]>. Renamed bitxor
operator to '#' for consistency. Parser still needs work.
Diffstat (limited to 'src/include/utils/int8.h')
-rw-r--r--src/include/utils/int8.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h
index 83791f281bb..9ebe8efc6dd 100644
--- a/src/include/utils/int8.h
+++ b/src/include/utils/int8.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: int8.h,v 1.23 2000/07/28 05:07:44 tgl Exp $
+ * $Id: int8.h,v 1.24 2000/10/24 20:16:48 petere Exp $
*
* NOTES
* These data types are supported on all 64-bit architectures, and may
@@ -76,6 +76,13 @@ extern Datum int8mod(PG_FUNCTION_ARGS);
extern Datum int8larger(PG_FUNCTION_ARGS);
extern Datum int8smaller(PG_FUNCTION_ARGS);
+extern Datum int8and(PG_FUNCTION_ARGS);
+extern Datum int8or(PG_FUNCTION_ARGS);
+extern Datum int8xor(PG_FUNCTION_ARGS);
+extern Datum int8not(PG_FUNCTION_ARGS);
+extern Datum int8shl(PG_FUNCTION_ARGS);
+extern Datum int8shr(PG_FUNCTION_ARGS);
+
extern Datum int84pl(PG_FUNCTION_ARGS);
extern Datum int84mi(PG_FUNCTION_ARGS);
extern Datum int84mul(PG_FUNCTION_ARGS);