Merge pull request #12537 from grpc/ctiller-patch-1

Fix case on internal type names
diff --git a/tools/profiling/microbenchmarks/bm2bq.py b/tools/profiling/microbenchmarks/bm2bq.py
index 6c5040d..9f9b672 100755
--- a/tools/profiling/microbenchmarks/bm2bq.py
+++ b/tools/profiling/microbenchmarks/bm2bq.py
@@ -30,7 +30,7 @@
 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,