pub(crate) struct CmdPkFkJoin {
    pub(crate) data_set: Option<ArgDataSet>,
    pub(crate) no_compress: bool,
    pub(crate) tuple_bytes: ArgTupleBytes,
    pub(crate) distribution: ArgDistribution,
    pub(crate) zipf_exponent: Option<f64>,
    pub(crate) selectivity: u32,
    pub(crate) file_type: ArgFileType,
    pub(crate) inner_rel_path: PathBuf,
    pub(crate) outer_rel_path: PathBuf,
    pub(crate) inner_rel_tuples: Option<usize>,
    pub(crate) outer_rel_tuples: Option<usize>,
}

Fields

data_set: Option<ArgDataSet>

Generate a popular data set

no_compress: bool

Enable gzip compression

tuple_bytes: ArgTupleBytes

Set the tuple size (bytes)

distribution: ArgDistribution

Outer relation’s data distribution

zipf_exponent: Option<f64>

Zipf exponent for Zipf-sampled outer relations

selectivity: u32

Selectivity of the join, in percent

file_type: ArgFileType

Set the output file type

inner_rel_path: PathBuf

Inner relation output file

outer_rel_path: PathBuf

Outer relation output file

inner_rel_tuples: Option<usize>

Inner relation size (tuples)

outer_rel_tuples: Option<usize>

Outer relation size (tuples)

Trait Implementations

Returns the corresponding clap::App.

Creates the struct from clap::ArgMatches. It cannot fail with a parameter generated by clap by construction. Read more

Gets the struct from the command line arguments. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.