PG-166: Display actual system time instead of null.

This commit is contained in:
Ibrar Ahmed
2021-01-18 17:11:49 +00:00
parent 0e8f4c489c
commit 412d9bc9b1
3 changed files with 21 additions and 14 deletions

View File

@@ -54,11 +54,6 @@
#include "utils/guc.h"
#define MAX_BACKEND_PROCESES (MaxBackends + NUM_AUXILIARY_PROCS + max_prepared_xacts)
/* Time difference in miliseconds */
#define TIMEVAL_DIFF(start, end) (((double) end.tv_sec + (double) end.tv_usec / 1000000.0) \
- ((double) start.tv_sec + (double) start.tv_usec / 1000000.0)) * 1000
#define TextArrayGetTextDatum(x,y) textarray_get_datum(x,y)
#define IntArrayGetTextDatum(x,y) intarray_get_datum(x,y)