Skip to content

Commit

Permalink
storage: metamorphically use columnar blocks
Browse files Browse the repository at this point in the history
Metamorphically enable use of columnar blocks.

Epic: none
Release note: none
  • Loading branch information
jbowens committed Oct 18, 2024
1 parent 763b674 commit 37ca53c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/storage/pebble.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ var columnarBlocksEnabled = settings.RegisterBoolSetting(
settings.SystemVisible,
"storage.columnar_blocks.enabled",
"set to true to enable columnar-blocks to store KVs in a columnar format",
false, // TODO(jackson): Metamorphicize this.
metamorphic.ConstantWithTestBool(
"storage.columnar_blocks.enabled", false /* defaultValue */),
settings.WithPublic,
)

Expand Down

0 comments on commit 37ca53c

Please sign in to comment.