diff --git a/core/schema.rs b/core/schema.rs index 302b8e64a..67705c615 100644 --- a/core/schema.rs +++ b/core/schema.rs @@ -76,17 +76,6 @@ impl PartialEq for Table { } } -impl Eq for Table {} - -impl std::hash::Hash for Table { - fn hash(&self, state: &mut H) { - match self { - Table::BTree(table) => std::ptr::hash(table.as_ref(), state), - Table::Pseudo(table) => std::ptr::hash(table.as_ref(), state), - } - } -} - pub struct BTreeTable { pub root_page: usize, pub name: String,