remove write portion of extension data race

This commit is contained in:
Travis 2020-01-06 23:40:48 -06:00
parent 881d3bef06
commit 35f9dfa374

View file

@ -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: