File tree 3 files changed +10
-6
lines changed
src/persist-client/src/internal
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ def get_ancestor_overrides_for_performance_regressions(
28
28
29
29
min_ancestor_mz_version_per_commit = dict ()
30
30
31
+ if scenario_class_name == "FastPathOrderByLimit" :
32
+ # PR#30872 (rust: Upgrade to 1.83.0) increases wallclock
33
+ min_ancestor_mz_version_per_commit [
34
+ "74ebdd68dd2e9ec860837d52866ab9db61a0a49e"
35
+ ] = MzVersion .parse_mz ("v0.129.0" )
36
+
31
37
if scenario_class_name == "OptbenchTPCHQ01" :
32
38
# PR#30806 ([optimizer] report per-transform metrics) increases wallclock
33
39
min_ancestor_mz_version_per_commit [
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ mod tests {
169
169
use super :: * ;
170
170
171
171
#[ mz_ore:: test]
172
+ #[ cfg_attr( miri, ignore) ] // too slow
172
173
fn test_merge_tree ( ) {
173
174
// Exhaustively test the merge tree for small sizes.
174
175
for max_len in 2 ..8 {
Original file line number Diff line number Diff line change @@ -55,13 +55,12 @@ one:two
55
55
sink1 1 1 true true
56
56
57
57
> SELECT s.name,
58
- SUM(u.updates_committed) > 0,
59
58
SUM(u.messages_received) >= 2
60
59
FROM mz_sources s
61
60
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
62
61
WHERE s.name IN ('upsert1')
63
62
GROUP BY s.id, s.name
64
- upsert1 true true
63
+ upsert1 true
65
64
66
65
# Shut down the cluster
67
66
> ALTER CLUSTER cluster1 SET (REPLICATION FACTOR = 0)
@@ -75,13 +74,12 @@ upsert1 true true
75
74
sink1 1 1 true true
76
75
77
76
> SELECT s.name,
78
- SUM(u.updates_committed) > 0,
79
77
SUM(u.messages_received) >= 2
80
78
FROM mz_sources s
81
79
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
82
80
WHERE s.name IN ('upsert1')
83
81
GROUP BY s.id, s.name
84
- upsert1 true true
82
+ upsert1 true
85
83
86
84
# Ingest some more data, and ensure counters are maintained
87
85
@@ -99,10 +97,9 @@ two:three
99
97
sink1 2 2 true true
100
98
101
99
> SELECT s.name,
102
- SUM(u.updates_committed) > 0,
103
100
SUM(u.messages_received) >= 4
104
101
FROM mz_sources s
105
102
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
106
103
WHERE s.name IN ('upsert1')
107
104
GROUP BY s.id, s.name
108
- upsert1 true true
105
+ upsert1 true
You can’t perform that action at this time.
0 commit comments