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.