We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc12806 commit a47e751Copy full SHA for a47e751
1 file changed
crates/core/src/subscription/module_subscription_manager.rs
@@ -1117,12 +1117,11 @@ impl SubscriptionManager {
1117
edge.rhs_join_col,
1118
&row.elements[edge.lhs_join_col.idx()],
1119
)
1120
- // This read should always succeed, and it's a bug if it doesn't.
1121
.expect("This read should always succeed, and it's a bug if it doesn't")
1122
.next()
1123
.map(|row| {
1124
- // Similarly this read should always succeed
1125
- row.read_col(edge.rhs_col).expect("This read should always succeed, and it's a bug if it doesn't")
+ row.read_col(edge.rhs_col)
+ .expect("This read should always succeed, and it's a bug if it doesn't")
1126
})
1127
}
1128
0 commit comments