Skip to content

Commit

Permalink
Add ydb benchmarks
Browse files Browse the repository at this point in the history
Signed-off-by: sashayakovtseva <[email protected]>
  • Loading branch information
sashayakovtseva committed Mar 19, 2024
1 parent e1c4fcd commit 78ea937
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/datastore/benchmark/driver_bench_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build ci && docker
// +build ci,docker

package benchmark

Expand All @@ -18,6 +17,7 @@ import (
"github.com/authzed/spicedb/internal/datastore/mysql"
"github.com/authzed/spicedb/internal/datastore/postgres"
"github.com/authzed/spicedb/internal/datastore/spanner"
"github.com/authzed/spicedb/internal/datastore/ydb"
"github.com/authzed/spicedb/internal/testfixtures"
testdatastore "github.com/authzed/spicedb/internal/testserver/datastore"
"github.com/authzed/spicedb/internal/testserver/datastore/config"
Expand Down Expand Up @@ -47,6 +47,8 @@ var drivers = []struct {
{postgres.Engine, "", nil},
{crdb.Engine, "-overlap-static", []dsconfig.ConfigOption{dsconfig.WithOverlapStrategy("static")}},
{crdb.Engine, "-overlap-insecure", []dsconfig.ConfigOption{dsconfig.WithOverlapStrategy("insecure")}},
{ydb.Engine, "-uniqueness-check", []dsconfig.ConfigOption{dsconfig.WithYDBEnableUniquenessCheck(true)}},
{ydb.Engine, "-no-uniqueness-check", []dsconfig.ConfigOption{dsconfig.WithYDBEnableUniquenessCheck(false)}},
{mysql.Engine, "", nil},
}

Expand Down

0 comments on commit 78ea937

Please sign in to comment.