diff --git a/core/util.rs b/core/util.rs index 02d7a63d2..4d3668db5 100644 --- a/core/util.rs +++ b/core/util.rs @@ -158,9 +158,6 @@ pub fn parse_schema_rows( StepResult::Row => { let row = rows.row().unwrap(); let ty = row.get::<&str>(0)?; - if !["table", "index", "view"].contains(&ty) { - continue; - } match ty { "table" => { let root_page: i64 = row.get::(3)?;