check FaultyQuery depending tables when shrinking

This commit is contained in:
pedrocarlo
2025-09-20 11:36:05 -03:00
parent 021d5d272a
commit 0e702fbec2

View File

@@ -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;
}