OSDN Git Service

Fixes:
authorMarc G. Fournier <scrappy@hub.org>
Sat, 20 Jul 1996 08:19:13 +0000 (08:19 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 20 Jul 1996 08:19:13 +0000 (08:19 +0000)
Hash indices for some data types don't work, for example for time and date.

- submitted by: Massimo Dal Zotto <dz@cs.unitn.it>

src/backend/catalog/pg_amop.h
src/backend/catalog/pg_amproc.h

index e9d1212..f749790 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_amop.h,v 1.1.1.1 1996/07/09 06:21:16 scrappy Exp $
+ * $Id: pg_amop.h,v 1.2 1996/07/20 08:19:11 scrappy Exp $
  *
  * NOTES
  *   the genbki.sh script reads this file and generates .bki
@@ -542,5 +542,15 @@ DATA(insert OID = 0 (  405 1076 1054 1 hashsel hashnpage ));
  */
 DATA(insert OID = 0 (  405 1077 1062 1 hashsel hashnpage ));
 
+/*
+ *  hash table date_ops
+ */
+DATA(insert OID = 0 (  405 1114 1093 1 hashsel hashnpage ));
+
+/*
+ *  hash table time_ops
+ */
+DATA(insert OID = 0 (  405 1115 1108 1 hashsel hashnpage ));
+
 
 #endif /* PG_AMOP_H */
index cacc2b7..8cc8579 100644 (file)
@@ -9,7 +9,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_amproc.h,v 1.1.1.1 1996/07/09 06:21:16 scrappy Exp $
+ * $Id: pg_amproc.h,v 1.2 1996/07/20 08:19:13 scrappy Exp $
  *
  * NOTES
  *    the genbki.sh script reads this file and generates .bki
@@ -130,5 +130,7 @@ DATA(insert OID = 0 (405 430 499 1));
 DATA(insert OID = 0 (405 431 456 1));
 DATA(insert OID = 0 (405 1076 1080 1));
 DATA(insert OID = 0 (405 1077 1081 1));
+DATA(insert OID = 0 (405 1114 450 1));
+DATA(insert OID = 0 (405 1115 694 1));
 
 #endif /* PG_AMPROC_H */