Trait tpctools::Tpc[][src]

pub trait Tpc {
    fn generate(
        &self,
        scale: usize,
        partitions: usize,
        input_path: &str,
        output_path: &str
    ) -> Result<()>;
fn get_table_names(&self) -> Vec<&str>;
fn get_schema(&self, table: &str) -> Schema;
fn convert_to_parquet<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        input_path: &'life1 str,
        output_path: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors