We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ecaa3a commit 671604aCopy full SHA for 671604a
2 files changed
src/FirebirdSql.Data.FirebirdClient.Benchmarks/CommandBenchmark.cs
@@ -22,9 +22,8 @@ namespace FirebirdSql.Data.FirebirdClient.Benchmarks;
22
[Config(typeof(BenchmarkConfig))]
23
public partial class CommandBenchmark : BenchmarkBase
24
{
25
+ const int Count = 100;
26
+
27
[Params("BIGINT", "VARCHAR(10) CHARACTER SET UTF8")]
28
public string DataType { get; set; }
-
- [Params(100)]
29
- public int Count { get; set; }
30
}
src/FirebirdSql.Data.FirebirdClient.Benchmarks/LargeFetchBenchmark.cs
@@ -5,8 +5,7 @@ namespace FirebirdSql.Data.FirebirdClient.Benchmarks;
5
6
public class LargeFetchBenchmark : BenchmarkBase
7
8
- [Params(100_000)]
9
+ const int Count = 100_000;
10
11
[Params(
12
"BIGINT",
0 commit comments