Fix case on internal type names

Should allow microbenchmarks to get running again
pull/12537/head
Craig Tiller 7 years ago committed by GitHub
parent e637734038
commit e6d2e8f16b
  1. 2
      tools/profiling/microbenchmarks/bm2bq.py

@ -30,7 +30,7 @@ columns = []
for row in json.loads(
subprocess.check_output([
'bq','--format=json','show','microbenchmarks.microbenchmarks']))['schema']['fields']:
columns.append((row['name'], row['type']))
columns.append((row['name'], row['type'].lower()))
SANITIZE = {
'integer': int,

Loading…
Cancel
Save