usecrate::catalog::{ColumnCatalog, TableName};#[derive(Debug, PartialEq, Eq, Clone, Hash)]pubstructCreateTableOperator{/// Table name to insert to
pubtable_name: TableName,
/// List of columns of the table
pubcolumns:Vec<ColumnCatalog>,
pubif_not_exists:bool,
}