diff --git a/ctl/rbf_check.go b/ctl/rbf_check.go index ded98604d..1d08f7a0c 100644 --- a/ctl/rbf_check.go +++ b/ctl/rbf_check.go @@ -42,7 +42,7 @@ func NewRBFCheckCommand(stdin io.Reader, stdout, stderr io.Writer) *RBFCheckComm // Run executes the export. func (cmd *RBFCheckCommand) Run(ctx context.Context) error { // Open database. - db := rbf.NewDB(cmd.Path) + db := rbf.NewDB(cmd.Path, nil) if err := db.Open(); err != nil { return err } diff --git a/ctl/rbf_dump.go b/ctl/rbf_dump.go index 3af88ef20..32295d6f3 100644 --- a/ctl/rbf_dump.go +++ b/ctl/rbf_dump.go @@ -47,7 +47,7 @@ func NewRBFDumpCommand(stdin io.Reader, stdout, stderr io.Writer) *RBFDumpComman // Run executes the export. func (cmd *RBFDumpCommand) Run(ctx context.Context) error { // Open database. - db := rbf.NewDB(cmd.Path) + db := rbf.NewDB(cmd.Path, nil) if err := db.Open(); err != nil { return err } diff --git a/ctl/rbf_page.go b/ctl/rbf_page.go index d392131ae..2fa9b70f4 100644 --- a/ctl/rbf_page.go +++ b/ctl/rbf_page.go @@ -45,7 +45,7 @@ func NewRBFPageCommand(stdin io.Reader, stdout, stderr io.Writer) *RBFPageComman // Run executes the export. func (cmd *RBFPageCommand) Run(ctx context.Context) error { // Open database. - db := rbf.NewDB(cmd.Path) + db := rbf.NewDB(cmd.Path, nil) if err := db.Open(); err != nil { return err } diff --git a/ctl/rbf_pages.go b/ctl/rbf_pages.go index 84da5e70c..9a3e918c2 100644 --- a/ctl/rbf_pages.go +++ b/ctl/rbf_pages.go @@ -46,7 +46,7 @@ func NewRBFPagesCommand(stdin io.Reader, stdout, stderr io.Writer) *RBFPagesComm // Run executes the export. func (cmd *RBFPagesCommand) Run(ctx context.Context) error { // Open database. - db := rbf.NewDB(cmd.Path) + db := rbf.NewDB(cmd.Path, nil) if err := db.Open(); err != nil { return err }