Skip to content

Commit 7f6b93e

Browse files
committed
fix(cubesql): Bump default rewrite iteration limit to 500
1 parent 48f66fb commit 7f6b93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/cubesql/cubesql/src/compile/rewrite/rewriter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ impl Rewriter {
208208
.with_iter_limit(
209209
env::var("CUBESQL_REWRITE_MAX_ITERATIONS")
210210
.map(|v| v.parse::<usize>().unwrap())
211-
.unwrap_or(300),
211+
.unwrap_or(500),
212212
)
213213
.with_node_limit(
214214
env::var("CUBESQL_REWRITE_MAX_NODES")

0 commit comments

Comments
 (0)