fix_system_distributed_tables.sh: adjust newly added 'request_size' and 'response_size' columns

Adjust the script to the new schema of system_traces.sessions. Two
new columns have been added:
   - request_size:  int
   - response_size: int

Signed-off-by: Vlad Zolotarov <vladz@scylladb.com>
Message-Id: <20180919005504.12498-1-vladz@scylladb.com>
This commit is contained in:
Vlad Zolotarov
2018-09-18 20:55:04 -04:00
committed by Paweł Dziepak
parent 24b90ef527
commit 043ced243e

View File

@@ -43,7 +43,9 @@ sessions_cols = {
'duration' : 'int',
'parameters' : 'map<text, text>',
'request' : 'text',
'started_at' : 'timestamp'
'started_at' : 'timestamp',
'request_size' : 'int',
'response_size' : 'int'
}
slow_query_log_cols = {