- value to timestamp with time zone.
+ This change reverts an ill-considered change made in release 7.3.
+ because it made the result dependent on the
+ linkend="guc-timezone">timezone> setting, which
+ computations for timestamp without time zone> should not be.
+ The previous behavior remains available by casting the input value
+ to timestamp with time zone>.
+ This change eliminates the designed-in assumption that the values
+ are accurate to microseconds and no more (since the float8>
+ values can be fractional).
The columns affected are
pg_stat_user_functions>.total_time>,
pg_stat_user_functions>.self_time>,
pg_stat_xact_user_functions>.total_time>,
and
pg_stat_xact_user_functions>.self_time>.
-
-
-
-
- Change
pg_stat_statements>'
- total_time> column to be measured in milliseconds
- (Tom Lane)
+ The statistics functions underlying these columns now also return
+ float8> milliseconds, rather than bigint>
+ microseconds.
+ contrib/pg_stat_statements>'
+ total_time> column is now also measured in
+ milliseconds.