Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion misc/python/materialize/mzcompose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def get_variable_system_parameters(
"arrangement_size_history_collection_interval", "1h", ["1s", "10s", "1h"]
),
VariableSystemParameter(
"arrangement_size_history_retention_period", "7d", ["1m", "1h", "7d"]
"arrangement_size_history_retention_period", "7d", ["1min", "1h", "7d"]
),
VariableSystemParameter(
"persist_validate_part_bounds_on_read", "false", ["true", "false"]
Expand Down
2 changes: 1 addition & 1 deletion misc/python/materialize/parallel_workload/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ def __init__(
"'1h'",
]
self.flags_with_values["arrangement_size_history_retention_period"] = [
"'1m'",
"'1min'",
"'1h'",
"'7d'",
]
Expand Down
1 change: 0 additions & 1 deletion src/environmentd/tests/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,6 @@ source materialize.public.t1 (u1, storage):

binding constraints:
lower:
(Storage inputs: [u1]): [<TIMESTAMP>]
(Isolation level: StrictSerializable): [<TIMESTAMP>]\n";

let row = client
Expand Down
1 change: 1 addition & 0 deletions src/timely-util/src/columnar/consolidate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ mod tests {
}

#[mz_ore::test]
#[cfg_attr(miri, ignore)] // too slow
fn emits_multiple_containers() {
let mut builder: ConsolidatingColumnBuilder<u64, u64, i64> = Default::default();
// Enough distinct rows to fill the SoA accumulator past the output target multiple
Expand Down
4 changes: 4 additions & 0 deletions test/pg-cdc-old-syntax/alter-table-after-source.td
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0.

# TODO: Reenable when https://github.com/MaterializeInc/database-issues/issues/7900 is fixed
$ skip-if
SELECT true

#
# Test ALTER TABLE -- source will error out for tables which existed when the source was created
#
Expand Down
8 changes: 5 additions & 3 deletions test/sqllogictest/distinct_arrangements.slt
Original file line number Diff line number Diff line change
Expand Up @@ -1057,10 +1057,12 @@ JOIN mz_introspection.mz_dataflow_operator_dataflows mdod ON mash.operator_id =
GROUP BY mdod.name
ORDER BY mdod.name
----
AccumulableErrorCheck 2
AccumulableErrorCheck 3
Arrange␠ReduceMinsMaxes 1
ArrangeAccumulable␠[val:␠empty] 2
ReduceAccumulable 2
ArrangeAccumulable␠[val:␠empty] 3
ArrangeBy[[Column(0,␠"operator_id")]] 2
ArrangeBy[[Column(1,␠"dataflow_id")]] 2
ReduceAccumulable 3
ReduceMinsMaxes 1
ReduceMinsMaxes␠Error␠Check 1

Expand Down
Loading