Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2c98143

Browse files
author
Thomas G. Lockhart
committed
Add datetime and timespan hash index declarations. Use float8 for both;
certainly OK for datetime since it is a float8 and should be OK for timespan since the first field within timespan is a float8. Use float8 hash function for time type (rather than char8).
1 parent d16b476 commit 2c98143

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/include/catalog/pg_amproc.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* Copyright (c) 1994, Regents of the University of California
1111
*
12-
* $Id: pg_amproc.h,v 1.6 1997/09/08 02:34:57 momjian Exp $
12+
* $Id: pg_amproc.h,v 1.7 1997/11/30 22:58:07 thomas Exp $
1313
*
1414
* NOTES
1515
* the genbki.sh script reads this file and generates .bki
@@ -21,7 +21,7 @@
2121
#define PG_AMPROC_H
2222

2323
/* ----------------
24-
* postgres.h contains the system type definintions and the
24+
* postgres.h contains the system type definitions and the
2525
* CATALOG(), BOOTSTRAP and DATA() sugar words so this file
2626
* can be read by both genbki.sh and the C compiler.
2727
* ----------------
@@ -133,6 +133,8 @@ DATA(insert OID = 0 (405 431 456 1));
133133
DATA(insert OID = 0 (405 1076 1080 1));
134134
DATA(insert OID = 0 (405 1077 1081 1));
135135
DATA(insert OID = 0 (405 1114 450 1));
136-
DATA(insert OID = 0 (405 1115 694 1));
136+
DATA(insert OID = 0 (405 1115 452 1));
137+
DATA(insert OID = 0 (405 1312 452 1));
138+
DATA(insert OID = 0 (405 1313 452 1));
137139

138140
#endif /* PG_AMPROC_H */

0 commit comments

Comments
 (0)