1use crate::stmt::Query; 2 3#[derive(Debug, Clone, PartialEq)] 4pub struct TableDerived { 5 pub subquery: Box<Query>, 6}