From a8677bb5adfeacc21efed07d1731a5d4c566730a Mon Sep 17 00:00:00 2001 From: Andy Arthur Date: Fri, 12 Nov 2021 15:25:55 -0800 Subject: [PATCH] benchmark without NBS rebase --- go/libraries/doltcore/doltdb/doltdb.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/go/libraries/doltcore/doltdb/doltdb.go b/go/libraries/doltcore/doltdb/doltdb.go index 5149b7ee2b..1344a9fac5 100644 --- a/go/libraries/doltcore/doltdb/doltdb.go +++ b/go/libraries/doltcore/doltdb/doltdb.go @@ -1154,7 +1154,8 @@ func (ddb *DoltDB) DeleteWorkspace(ctx context.Context, workRef ref.DoltRef) err // Rebase rebases the underlying db from disk, re-loading the manifest. Useful when another process might have made // changes to the database we need to read. func (ddb *DoltDB) Rebase(ctx context.Context) error { - return ddb.db.Rebase(ctx) + //return ddb.db.Rebase(ctx) + return nil } // GC performs garbage collection on this ddb. Values passed in |uncommitedVals| will be temporarily saved during gc.