From 35f9dfa3745c26183050c7d45e0e35381fa006fc Mon Sep 17 00:00:00 2001 From: Travis Date: Mon, 6 Jan 2020 23:40:48 -0600 Subject: [PATCH] remove write portion of extension data race --- server.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/server.go b/server.go index af5dd7b32..96b422cfe 100644 --- a/server.go +++ b/server.go @@ -446,8 +446,6 @@ func (s *Server) loadExtension(extInfo *ext.ExtensionInfo) error { bitmapOps := extInfo.BitmapOps bmOps, countOps, fieldOps, unknownOps := 0, 0, 0, 0 for i := range bitmapOps { - // title-case the name - bitmapOps[i].Name = strings.Title(bitmapOps[i].Name) typ := bitmapOps[i].Func.BitmapOpType() switch { case typ.Input == ext.OpInputBitmap && typ.Output == ext.OpOutputCount: