disable roaring backend in test

This commit is contained in:
Matthew Jaffee 2022-01-21 17:27:21 -06:00
parent 2d44c23ac0
commit a2e109a07c

View file

@ -6915,11 +6915,9 @@ func TestTimelessClearRegression(t *testing.T) {
}
func TestMissingKeyRegression(t *testing.T) {
c := test.MustRunCluster(t, 1, []server.CommandOption{server.OptCommandServerOptions(
pilosa.OptServerStorageConfig(&storage.Config{
Backend: "roaring",
FsyncEnabled: false,
}))})
// this used to be explicitly roaring backend... I'm not sure
// whether it is a useful test in post-roaring world.
c := test.MustRunCluster(t, 1)
defer c.Close()
c.CreateField(t, "i", pilosa.IndexOptions{Keys: true, TrackExistence: true}, "f", pilosa.OptFieldKeys())