File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 93
93
* Allow LOCALE on a per-column basis, default to ASCII
94
94
* Allow array on int8[]
95
95
* Remove Money type, add money formatting for decimal type
96
- * Fix typein/out functions to not be user-callable
96
+ * Declare typein/out functions in pg_proc with a special "C string" data type
97
97
* Add non-large-object binary field
98
98
* Add index on NUMERIC type
99
99
@@ -190,6 +190,7 @@ INDEXES
190
190
* Improve LIMIT processing by using index to limit rows processed
191
191
* Have optimizer take LIMIT into account when considering index scans
192
192
* Make index creation use psort code, because it is now faster(Vadim)
193
+ * Allow creation of sort temp tables > 1 Gig
193
194
* Create more system table indexes for faster cache lookups
194
195
* fix indexscan() so it does leak memory by not requiring caller to free
195
196
* Improve _bt_binsrch() to handle equal keys better, remove _bt_firsteq()(Tom)
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.71 1999/05/25 16:12:00 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.72 1999/07/08 03:22:46 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -1429,7 +1429,7 @@ datetime_trunc(text *units, DateTime *datetime)
1429
1429
break ;
1430
1430
1431
1431
case DTK_MICROSEC :
1432
- fsec = rint (fsec * 1000 ) / 1000 ;
1432
+ fsec = rint (fsec * 1000000 ) / 1000000 ;
1433
1433
break ;
1434
1434
1435
1435
default :
@@ -1573,7 +1573,7 @@ timespan_trunc(text *units, TimeSpan *timespan)
1573
1573
break ;
1574
1574
1575
1575
case DTK_MICROSEC :
1576
- fsec = rint (fsec * 1000 ) / 1000 ;
1576
+ fsec = rint (fsec * 1000000 ) / 1000000 ;
1577
1577
break ;
1578
1578
1579
1579
default :
You can’t perform that action at this time.
0 commit comments