You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SeqCli/Cli/Commands/Bench/BenchCases.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,16 @@
55
55
"query": "select @Timestamp from stream where @Timestamp >= now() - 30d order by @Timestamp % 1ms limit 10",
56
56
"notes": "Tests performance of limited sort."
57
57
},
58
+
{
59
+
"id": "order-by-message-limit-10",
60
+
"query": "select @Message from stream where @Timestamp >= now() - 2d order by @Message limit 10",
61
+
"notes": "Adds character collation to limited sort."
62
+
},
63
+
{
64
+
"id": "order-by-message-limit-10-ci",
65
+
"query": "select @Message from stream where @Timestamp >= now() - 2d order by @Message ci limit 10",
66
+
"notes": "Adds case insensitive character collation to limited sort."
67
+
},
58
68
{
59
69
"id": "count-where-heavy-predicate",
60
70
"query": "select count(*) from stream where (A = 1 or B = '2' or C or D <> null or length(E) > 5 or F = {f: 6} or G = '7' or H like '8%' or I > 9 or J % 10 = 0) and @Timestamp >= now() - 30d for no_cache",
0 commit comments