We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b77db commit 93959d4Copy full SHA for 93959d4
crates/datastore/src/locking_tx_datastore/mut_tx.rs
@@ -2007,7 +2007,7 @@ impl MutTxId {
2007
let StViewRow {
2008
table_id, is_anonymous, ..
2009
} = self.lookup_st_view(view_id)?;
2010
- let table_id = table_id.unwrap();
+ let table_id = table_id.expect("views have backing table");
2011
2012
if is_anonymous {
2013
self.clear_table(table_id)?;
0 commit comments