pub trait TableInfoWritewhere
Self: Sized,{
// Required methods
fn apply_alter_table(
self,
alter_table: &AlterTable,
) -> Result<Self, AnalysisError>;
fn insert_create_table(
&mut self,
name: &FullName,
create_table: &CreateTable,
);
}Expand description
table information writer
Required Methods§
Sourcefn apply_alter_table(
self,
alter_table: &AlterTable,
) -> Result<Self, AnalysisError>
fn apply_alter_table( self, alter_table: &AlterTable, ) -> Result<Self, AnalysisError>
apply alter table statement to current schema
Sourcefn insert_create_table(&mut self, name: &FullName, create_table: &CreateTable)
fn insert_create_table(&mut self, name: &FullName, create_table: &CreateTable)
insert create table statement
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.