From ed1fb4cabc07b1ac0266ddffa73fb5545cf8136b Mon Sep 17 00:00:00 2001 From: TcMits Date: Mon, 1 Sep 2025 11:51:51 +0700 Subject: [PATCH] remove unnecessary check --- core/util.rs | 3 --- 1 file changed, 3 deletions(-) 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)?;