Skip to content

Commit

Permalink
Fixed the crash on startup in CosmosDB raw query benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriyIvon committed Jul 15, 2023
1 parent 651b44e commit f5a32cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public CosmosDbRawQueryExecutorFactory(
Container.Register<Container>(() => Container.GetInstance<Database>().GetContainer(query.TableName), Lifestyle);
Container.Register<IDistinctValuesProvider, CosmosDbDistinctValuesProvider>(Lifestyle);
Container.Register<IRandomValueProvider, RandomValueProvider>(Lifestyle);
Container.Register<ISqlParametersBuilder, SqlParametersBuilder>(Lifestyle);
Container.Register<ISqlParametersBuilder>(() => new SqlParametersBuilder(), Lifestyle);
Container.Register<ISqlQueryBuilder, SqlRawQueryBuilder>(Lifestyle);
Container.Register<IQueryExecutor, CosmosDbQueryExecutor>(Lifestyle);
}
Expand Down

0 comments on commit f5a32cf

Please sign in to comment.