mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
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>
This commit is contained in:
parent
94215d51c8
commit
544e802910
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user