03023a2664 represented time as an int64 on all platforms but forgot to
update the comment related to INSTR_TIME_GET_MICROSEC() and provided
an incorrect comment for INSTR_TIME_GET_NANOSEC().
In passing remove an unneeded cast to int64.
Author: Bertrand Drouvot
Discussion: https://www.postgresql.org/message-id/ZrHkv3MAQfwNSmTG@ip-10-97-1-34.eu-west-3.compute.internal
*
* INSTR_TIME_GET_MILLISEC(t) convert t to double (in milliseconds)
*
- * INSTR_TIME_GET_MICROSEC(t) convert t to uint64 (in microseconds)
+ * INSTR_TIME_GET_MICROSEC(t) get t in microseconds
*
- * INSTR_TIME_GET_NANOSEC(t) convert t to uint64 (in nanoseconds)
+ * INSTR_TIME_GET_NANOSEC(t) get t in nanoseconds
*
* Note that INSTR_TIME_SUBTRACT and INSTR_TIME_ACCUM_DIFF convert
* absolute times to intervals. The INSTR_TIME_GET_xxx operations are
((t) = pg_clock_gettime_ns())
#define INSTR_TIME_GET_NANOSEC(t) \
- ((int64) (t).ticks)
+ ((t).ticks)
#else /* WIN32 */