Concurrent query with ReadOnlyTxn without initial table serving may be blocked

wangleiin commented :

I wonder if the checksum should be updated for
github.com/dgraph-io/dgraph/worker/groups.go, line 832

SLURP:
			for {
				select {
				case more := <-deltaCh:
					if more == nil {
						return
					}
					batch++
					delta.Txns = append(delta.Txns, more.Txns...)
					delta.MaxAssigned = x.Max(delta.MaxAssigned, more.MaxAssigned)
					**delta.GroupChecksums = more.GroupChecksums**
				default:
					break SLURP
				}
			}