Commit 544e8029 authored by Marc G. Fournier's avatar Marc G. Fournier

Fixes:

Hash indices for some data types don't work, for example for time and date.

- submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
parent 94215d51
......@@ -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 */
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment