Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/backend/cdb/motion/cdbmotion.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ RemoveMotionLayer(MotionLayerState *mlStates)
/* Emit statistics to log */
if (gp_log_interconnect >= GPVARS_VERBOSITY_VERBOSE)
elog(LOG, "RemoveMotionLayer(): dumping stats\n"
" Sent: %9u chunks %9u total bytes %9u tuple bytes\n"
" Received: %9u chunks %9u total bytes %9u tuple bytes; "
" Sent: %9" INT64_MODIFIER "u chunks %9" INT64_MODIFIER "u total bytes %9" INT64_MODIFIER "u tuple bytes\n"
" Received: %9" INT64_MODIFIER "u chunks %9" INT64_MODIFIER "u total bytes %9" INT64_MODIFIER "u tuple bytes; "
"%9u chunkproc calls\n",
mlStates->stat_total_chunks_sent,
mlStates->stat_total_bytes_sent,
Expand Down
12 changes: 6 additions & 6 deletions src/include/cdb/cdbinterconnect.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ typedef struct MotionLayerState
/*
* GLOBAL MOTION-LAYER STATISTICS
*/
uint32 stat_total_chunks_sent; /* Tuple-chunks sent. */
uint32 stat_total_bytes_sent; /* Bytes sent, including headers. */
uint32 stat_tuple_bytes_sent; /* Bytes of pure tuple-data sent. */
uint64 stat_total_chunks_sent; /* Tuple-chunks sent. */
uint64 stat_total_bytes_sent; /* Bytes sent, including headers. */
uint64 stat_tuple_bytes_sent; /* Bytes of pure tuple-data sent. */

uint32 stat_total_chunks_recvd;/* Tuple-chunks received. */
uint32 stat_total_bytes_recvd; /* Bytes received, including headers. */
uint32 stat_tuple_bytes_recvd; /* Bytes of pure tuple-data received. */
uint64 stat_total_chunks_recvd;/* Tuple-chunks received. */
uint64 stat_total_bytes_recvd; /* Bytes received, including headers. */
uint64 stat_tuple_bytes_recvd; /* Bytes of pure tuple-data received. */

uint32 stat_total_chunkproc_calls; /* Calls to processIncomingChunks() */

Expand Down
Loading