From 0e702fbec2609573445db5937d1a211a4f7e6dfb Mon Sep 17 00:00:00 2001 From: pedrocarlo Date: Sat, 20 Sep 2025 11:36:05 -0300 Subject: [PATCH] check FaultyQuery depending tables when shrinking --- simulator/shrink/plan.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/shrink/plan.rs b/simulator/shrink/plan.rs index be5e3159b..58f5eb156 100644 --- a/simulator/shrink/plan.rs +++ b/simulator/shrink/plan.rs @@ -33,7 +33,7 @@ impl InteractionPlan { break; } match &all_interactions[idx].1.interaction { - InteractionType::Query(query) => { + InteractionType::Query(query) | InteractionType::FaultyQuery(query) => { depending_tables = query.dependencies(); break; }