graph/db: add StoreOptions to NewSQLStore

This commit is contained in:
Elle Mouton
2025-05-23 11:00:29 +02:00
parent a0a20bd0d0
commit 149e1c7d35
3 changed files with 24 additions and 4 deletions

View File

@@ -38,5 +38,8 @@ func NewTestDB(t testing.TB) V1Store {
},
)
return NewSQLStore(executor, graphStore)
store, err := NewSQLStore(executor, graphStore)
require.NoError(t, err)
return store
}