Temporarily remove parallel iterator processing

This commit is contained in:
Tobie Morgan Hitchcock 2019-02-10 23:17:22 +00:00
parent b5998496e0
commit 07559e7ff8

View file

@ -16,7 +16,6 @@ package db
import ( import (
"errors" "errors"
"runtime"
) )
type method int8 type method int8
@ -86,7 +85,7 @@ const (
var ( var (
// workerCount specifies how many workers should be used // workerCount specifies how many workers should be used
// to process each query statement concurrently. // to process each query statement concurrently.
workerCount = runtime.NumCPU() workerCount = 1
// maxRecursiveQueries specifies how many queries will be // maxRecursiveQueries specifies how many queries will be
// processed recursively before the query is cancelled. // processed recursively before the query is cancelled.