pub struct CreateTableBuilder {
Show 31 fields pub or_replace: bool, pub temporary: bool, pub external: bool, pub global: Option<bool>, pub if_not_exists: bool, pub transient: bool, pub name: ObjectName, pub columns: Vec<ColumnDef>, pub constraints: Vec<TableConstraint>, pub hive_distribution: HiveDistributionStyle, pub hive_formats: Option<HiveFormat>, pub table_properties: Vec<SqlOption>, pub with_options: Vec<SqlOption>, pub file_format: Option<FileFormat>, pub location: Option<String>, pub query: Option<Box<Query>>, pub without_rowid: bool, pub like: Option<ObjectName>, pub clone: Option<ObjectName>, pub engine: Option<String>, pub comment: Option<String>, pub auto_increment_offset: Option<u32>, pub default_charset: Option<String>, pub collation: Option<String>, pub on_commit: Option<OnCommit>, pub on_cluster: Option<String>, pub order_by: Option<Vec<Ident>>, pub partition_by: Option<Box<Expr>>, pub cluster_by: Option<Vec<Ident>>, pub options: Option<Vec<SqlOption>>, pub strict: bool,
}
Expand description

Builder for create table statement variant (1).

This structure helps building and accessing a create table with more ease, without needing to:

  • Match the enum itself a lot of times; or
  • Moving a lot of variables around the code.

§Example

use sqlparser::ast::helpers::stmt_create_table::CreateTableBuilder;
use sqlparser::ast::{ColumnDef, DataType, Ident, ObjectName};
let builder = CreateTableBuilder::new(ObjectName(vec![Ident::new("table_name")]))
   .if_not_exists(true)
   .columns(vec![ColumnDef {
       name: Ident::new("c1"),
       data_type: DataType::Int(None),
       collation: None,
       options: vec![],
}]);
// You can access internal elements with ease
assert!(builder.if_not_exists);
// Convert to a statement
assert_eq!(
   builder.build().to_string(),
   "CREATE TABLE IF NOT EXISTS table_name (c1 INT)"
)

Fields§

§or_replace: bool§temporary: bool§external: bool§global: Option<bool>§if_not_exists: bool§transient: bool§name: ObjectName§columns: Vec<ColumnDef>§constraints: Vec<TableConstraint>§hive_distribution: HiveDistributionStyle§hive_formats: Option<HiveFormat>§table_properties: Vec<SqlOption>§with_options: Vec<SqlOption>§file_format: Option<FileFormat>§location: Option<String>§query: Option<Box<Query>>§without_rowid: bool§like: Option<ObjectName>§clone: Option<ObjectName>§engine: Option<String>§comment: Option<String>§auto_increment_offset: Option<u32>§default_charset: Option<String>§collation: Option<String>§on_commit: Option<OnCommit>§on_cluster: Option<String>§order_by: Option<Vec<Ident>>§partition_by: Option<Box<Expr>>§cluster_by: Option<Vec<Ident>>§options: Option<Vec<SqlOption>>§strict: bool

Implementations§

source§

impl CreateTableBuilder

source

pub fn new(name: ObjectName) -> CreateTableBuilder

source

pub fn or_replace(self, or_replace: bool) -> CreateTableBuilder

source

pub fn temporary(self, temporary: bool) -> CreateTableBuilder

source

pub fn external(self, external: bool) -> CreateTableBuilder

source

pub fn global(self, global: Option<bool>) -> CreateTableBuilder

source

pub fn if_not_exists(self, if_not_exists: bool) -> CreateTableBuilder

source

pub fn transient(self, transient: bool) -> CreateTableBuilder

source

pub fn columns(self, columns: Vec<ColumnDef>) -> CreateTableBuilder

source

pub fn constraints( self, constraints: Vec<TableConstraint> ) -> CreateTableBuilder

source

pub fn hive_distribution( self, hive_distribution: HiveDistributionStyle ) -> CreateTableBuilder

source

pub fn hive_formats( self, hive_formats: Option<HiveFormat> ) -> CreateTableBuilder

source

pub fn table_properties( self, table_properties: Vec<SqlOption> ) -> CreateTableBuilder

source

pub fn with_options(self, with_options: Vec<SqlOption>) -> CreateTableBuilder

source

pub fn file_format(self, file_format: Option<FileFormat>) -> CreateTableBuilder

source

pub fn location(self, location: Option<String>) -> CreateTableBuilder

source

pub fn query(self, query: Option<Box<Query>>) -> CreateTableBuilder

source

pub fn without_rowid(self, without_rowid: bool) -> CreateTableBuilder

source

pub fn like(self, like: Option<ObjectName>) -> CreateTableBuilder

source

pub fn clone_clause(self, clone: Option<ObjectName>) -> CreateTableBuilder

source

pub fn engine(self, engine: Option<String>) -> CreateTableBuilder

source

pub fn comment(self, comment: Option<String>) -> CreateTableBuilder

source

pub fn auto_increment_offset(self, offset: Option<u32>) -> CreateTableBuilder

source

pub fn default_charset( self, default_charset: Option<String> ) -> CreateTableBuilder

source

pub fn collation(self, collation: Option<String>) -> CreateTableBuilder

source

pub fn on_commit(self, on_commit: Option<OnCommit>) -> CreateTableBuilder

source

pub fn on_cluster(self, on_cluster: Option<String>) -> CreateTableBuilder

source

pub fn order_by(self, order_by: Option<Vec<Ident>>) -> CreateTableBuilder

source

pub fn partition_by(self, partition_by: Option<Box<Expr>>) -> CreateTableBuilder

source

pub fn cluster_by(self, cluster_by: Option<Vec<Ident>>) -> CreateTableBuilder

source

pub fn options(self, options: Option<Vec<SqlOption>>) -> CreateTableBuilder

source

pub fn strict(self, strict: bool) -> CreateTableBuilder

source

pub fn build(self) -> Statement

Trait Implementations§

source§

impl Clone for CreateTableBuilder

source§

fn clone(&self) -> CreateTableBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CreateTableBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Hash for CreateTableBuilder

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for CreateTableBuilder

source§

fn eq(&self, other: &CreateTableBuilder) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Statement> for CreateTableBuilder

§

type Error = ParserError

The type returned in the event of a conversion error.
source§

fn try_from( stmt: Statement ) -> Result<CreateTableBuilder, <CreateTableBuilder as TryFrom<Statement>>::Error>

Performs the conversion.
source§

impl Visit for CreateTableBuilder

source§

fn visit<V>(&self, visitor: &mut V) -> ControlFlow<<V as Visitor>::Break>
where V: Visitor,

source§

impl VisitMut for CreateTableBuilder

source§

fn visit<V>(&mut self, visitor: &mut V) -> ControlFlow<<V as VisitorMut>::Break>
where V: VisitorMut,

source§

impl Eq for CreateTableBuilder

source§

impl StructuralPartialEq for CreateTableBuilder

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,