Skip to content

Commit b74af0c

Browse files
authored
Merge pull request #30938 from def-/pr-nightly16
ci: Nightly fixes (January 3)
2 parents fe4d895 + 3d528bc commit b74af0c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

misc/python/materialize/version_ancestor_overrides.py

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ def get_ancestor_overrides_for_performance_regressions(
2828

2929
min_ancestor_mz_version_per_commit = dict()
3030

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+
3137
if scenario_class_name == "OptbenchTPCHQ01":
3238
# PR#30806 ([optimizer] report per-transform metrics) increases wallclock
3339
min_ancestor_mz_version_per_commit[

src/persist-client/src/internal/merge.rs

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ mod tests {
169169
use super::*;
170170

171171
#[mz_ore::test]
172+
#[cfg_attr(miri, ignore)] // too slow
172173
fn test_merge_tree() {
173174
// Exhaustively test the merge tree for small sizes.
174175
for max_len in 2..8 {

test/testdrive/statistics-maintenance.td

+3-6
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,12 @@ one:two
5555
sink1 1 1 true true
5656

5757
> SELECT s.name,
58-
SUM(u.updates_committed) > 0,
5958
SUM(u.messages_received) >= 2
6059
FROM mz_sources s
6160
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
6261
WHERE s.name IN ('upsert1')
6362
GROUP BY s.id, s.name
64-
upsert1 true true
63+
upsert1 true
6564

6665
# Shut down the cluster
6766
> ALTER CLUSTER cluster1 SET (REPLICATION FACTOR = 0)
@@ -75,13 +74,12 @@ upsert1 true true
7574
sink1 1 1 true true
7675

7776
> SELECT s.name,
78-
SUM(u.updates_committed) > 0,
7977
SUM(u.messages_received) >= 2
8078
FROM mz_sources s
8179
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
8280
WHERE s.name IN ('upsert1')
8381
GROUP BY s.id, s.name
84-
upsert1 true true
82+
upsert1 true
8583

8684
# Ingest some more data, and ensure counters are maintained
8785

@@ -99,10 +97,9 @@ two:three
9997
sink1 2 2 true true
10098

10199
> SELECT s.name,
102-
SUM(u.updates_committed) > 0,
103100
SUM(u.messages_received) >= 4
104101
FROM mz_sources s
105102
JOIN mz_internal.mz_source_statistics_raw u ON s.id = u.id
106103
WHERE s.name IN ('upsert1')
107104
GROUP BY s.id, s.name
108-
upsert1 true true
105+
upsert1 true

0 commit comments

Comments
 (0)