Skip to content

Commit fdcb8ff

Browse files
authored
Merge pull request MaterializeInc#34010 from def-/pr-pw-revert
parallel-workload: Back to smaller expressions
2 parents 735e223 + dc0e10a commit fdcb8ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/python/materialize/parallel_workload/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def expression(
277277
level: int = 0,
278278
) -> str:
279279
if level < 60:
280-
if FUNC_OPS[data_type] and rng.random() < 0.7:
280+
if FUNC_OPS[data_type] and rng.random() < 0.5:
281281
fnop = rng.choice(FUNC_OPS[data_type])
282282
if (
283283
kind == ExprKind.ALL

0 commit comments

Comments
 (0)