Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement listDatabases for SQLite #3269

Merged
merged 15 commits into from
Sep 8, 2023
Prev Previous commit
Next Next commit
wip
  • Loading branch information
rumyantseva committed Sep 1, 2023
commit 6d180ca929a8e52993222566ac2626cf4c8b1b8b
5 changes: 0 additions & 5 deletions internal/backends/sqlite/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,6 @@ func (b *backend) ListDatabases(ctx context.Context, params *backends.ListDataba
}

for i, dbName := range list {
d := b.r.DatabaseGetExisting(ctx, dbName)
if d == nil {
continue
}

db, err := b.Database(dbName)
if err != nil {
return nil, lazyerrors.Error(err)
Expand Down