File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ RemoveMotionLayer(MotionLayerState *mlStates)
129129 /* Emit statistics to log */
130130 if (gp_log_interconnect >= GPVARS_VERBOSITY_VERBOSE )
131131 elog (LOG , "RemoveMotionLayer(): dumping stats\n"
132- " Sent: %9u chunks %9u total bytes %9u tuple bytes\n"
133- " Received: %9u chunks %9u total bytes %9u tuple bytes; "
132+ " Sent: %9lu chunks %9lu total bytes %9lu tuple bytes\n"
133+ " Received: %9lu chunks %9lu total bytes %9lu tuple bytes; "
134134 "%9u chunkproc calls\n" ,
135135 mlStates -> stat_total_chunks_sent ,
136136 mlStates -> stat_total_bytes_sent ,
Original file line number Diff line number Diff line change @@ -485,13 +485,13 @@ typedef struct MotionLayerState
485485 /*
486486 * GLOBAL MOTION-LAYER STATISTICS
487487 */
488- uint32 stat_total_chunks_sent ; /* Tuple-chunks sent. */
489- uint32 stat_total_bytes_sent ; /* Bytes sent, including headers. */
490- uint32 stat_tuple_bytes_sent ; /* Bytes of pure tuple-data sent. */
488+ uint64 stat_total_chunks_sent ; /* Tuple-chunks sent. */
489+ uint64 stat_total_bytes_sent ; /* Bytes sent, including headers. */
490+ uint64 stat_tuple_bytes_sent ; /* Bytes of pure tuple-data sent. */
491491
492- uint32 stat_total_chunks_recvd ;/* Tuple-chunks received. */
493- uint32 stat_total_bytes_recvd ; /* Bytes received, including headers. */
494- uint32 stat_tuple_bytes_recvd ; /* Bytes of pure tuple-data received. */
492+ uint64 stat_total_chunks_recvd ;/* Tuple-chunks received. */
493+ uint64 stat_total_bytes_recvd ; /* Bytes received, including headers. */
494+ uint64 stat_tuple_bytes_recvd ; /* Bytes of pure tuple-data received. */
495495
496496 uint32 stat_total_chunkproc_calls ; /* Calls to processIncomingChunks() */
497497
You can’t perform that action at this time.
0 commit comments