Skip to content
Snippets Groups Projects
Commit 26345957 authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8583 from ctiller/new_fields

Add some fields to bigquery
parents 0fa0f384 bd3ab19a
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,7 @@ def _flatten_result_inplace(scenario_result):
scenario_result['serverCores'] = json.dumps(scenario_result['serverCores'])
scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess'])
scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess'])
scenario_result['requestResults'] = json.dumps(scenario_result['requestResults'])
def _populate_metadata_inplace(scenario_result):
......
......@@ -208,5 +208,10 @@
"name": "serverSuccess",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "request_results",
"type": "STRING",
"mode": "NULLABLE"
}
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment