From e6d2e8f16bd2ebbfd112b09e589205191211a2c8 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Wed, 13 Sep 2017 06:10:18 -0700 Subject: [PATCH] Fix case on internal type names Should allow microbenchmarks to get running again --- tools/profiling/microbenchmarks/bm2bq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profiling/microbenchmarks/bm2bq.py b/tools/profiling/microbenchmarks/bm2bq.py index 6c5040de56d..9f9b672f759 100755 --- a/tools/profiling/microbenchmarks/bm2bq.py +++ b/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,