Temporarily remove parallel iterator processing
This commit is contained in:
parent
b5998496e0
commit
07559e7ff8
1 changed files with 1 additions and 2 deletions
|
@ -16,7 +16,6 @@ package db
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
type method int8
|
||||
|
@ -86,7 +85,7 @@ const (
|
|||
var (
|
||||
// workerCount specifies how many workers should be used
|
||||
// to process each query statement concurrently.
|
||||
workerCount = runtime.NumCPU()
|
||||
workerCount = 1
|
||||
|
||||
// maxRecursiveQueries specifies how many queries will be
|
||||
// processed recursively before the query is cancelled.
|
||||
|
|
Loading…
Reference in a new issue