Skip to content

Commit 454f990

Browse files
fix: read benchmarks
1 parent b41f377 commit 454f990

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

benchmark/BenchmarkRunner/Benchmarks/MysqlReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class MysqlReadBenchmark
1717
private readonly string _connectionString = Config.GetMysqlConnectionString();
1818
private QuerySql _sqlcImpl = null!;
1919
private const int CustomerCount = 500;
20-
private const int QueriesToRun = 1000;
20+
private const int QueriesToRun = 3000;
2121

2222
[Params(50, 500, 5000)]
2323
public int Limit { get; set; }

benchmark/BenchmarkRunner/Benchmarks/PostgresqlReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class PostgresqlReadBenchmark
1717
private readonly string _connectionString = Config.GetPostgresConnectionString();
1818
private QuerySql _sqlcImpl = null!;
1919
private const int CustomerCount = 500;
20-
private const int QueriesToRun = 1000;
20+
private const int QueriesToRun = 3000;
2121

2222
[Params(50, 500, 5000)]
2323
public int Limit { get; set; }

benchmark/BenchmarkRunner/Benchmarks/SqliteReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class SqliteReadBenchmark
1717
private readonly string _connectionString = Config.GetSqliteConnectionString();
1818
private QuerySql _sqlcImpl = null!;
1919
private const int CustomerCount = 250;
20-
private const int QueriesToRun = 500;
20+
private const int QueriesToRun = 1000;
2121

2222
[Params(50, 500, 5000)]
2323
public int Limit { get; set; }

0 commit comments

Comments
 (0)