Skip to content

Commit 69c17ce

Browse files
committed
colfetcher: do not enable direct scans metamorphically
We don't have immediate plans to productionize this feature, so enabling it metamorphically can only lead to wasted effort / increased flaking in case of bugs in the feature. Release note: None
1 parent df9bf8a commit 69c17ce

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pkg/sql/colfetcher/cfetcher_wrapper.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import (
2525
"github.com/cockroachdb/cockroach/pkg/sql/types"
2626
"github.com/cockroachdb/cockroach/pkg/storage"
2727
"github.com/cockroachdb/cockroach/pkg/util/buildutil"
28-
"github.com/cockroachdb/cockroach/pkg/util/metamorphic"
2928
"github.com/cockroachdb/cockroach/pkg/util/mon"
3029
"github.com/cockroachdb/errors"
3130
)
@@ -36,11 +35,6 @@ var DirectScansEnabled = settings.RegisterBoolSetting(
3635
settings.ApplicationLevel,
3736
"sql.distsql.direct_columnar_scans.enabled",
3837
"set to true to enable the 'direct' columnar scans in the KV layer",
39-
directScansEnabledDefault,
40-
)
41-
42-
var directScansEnabledDefault = metamorphic.ConstantWithTestBool(
43-
"direct-scans-enabled",
4438
false,
4539
)
4640

0 commit comments

Comments
 (0)