Skip to content

Commit 7e47d51

Browse files
committed
Use longer/more realistic text search cases
1 parent 0bf41ae commit 7e47d51

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/SeqCli/Cli/Commands/Bench/BenchCases.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"notes": "Tests sparse deserialization and condition evaluation atop basic page traversal."
1212
},
1313
{
14-
"id": "count-exception-starts-with-s",
15-
"query": "select count(*) from stream where @Exception like 'S%' and @Timestamp >= now() - 30d",
16-
"notes": "Text search performance. Chooses 'S' because in .NET data there should be some hits."
14+
"id": "count-exception-starts-with-sys",
15+
"query": "select count(*) from stream where @Exception like 'Sys%' and @Timestamp >= now() - 30d",
16+
"notes": "Text search performance. Chooses 'Sys' because in .NET data there should be some hits."
1717
},
1818
{
19-
"id": "count-message-starts-with-e",
20-
"query": "select count(*) from stream where @Message like 'E%' and @Timestamp >= now() - 30d",
19+
"id": "count-message-starts-with-fai",
20+
"query": "select count(*) from stream where @Message like 'Fai%' and @Timestamp >= now() - 30d",
2121
"notes": "Text search performance; worse on @Message than other properties because fragment pre-filtering is not used."
2222
},
2323
{

0 commit comments

Comments
 (0)