pub struct IndexDropStatement { /* private fields */ }Expand description
Drop an index for an existing table
§Examples
use sea_query::{tests_cfg::*, *};
let index = Index::drop()
.name("idx-glyph-aspect")
.table(Glyph::Table)
.to_owned();
assert_eq!(
index.to_string(MysqlQueryBuilder),
r#"DROP INDEX `idx-glyph-aspect` ON `glyph`"#
);
assert_eq!(
index.to_string(PostgresQueryBuilder),
r#"DROP INDEX "idx-glyph-aspect""#
);
assert_eq!(
index.to_string(SqliteQueryBuilder),
r#"DROP INDEX "idx-glyph-aspect""#
);Implementations§
Source§impl IndexDropStatement
impl IndexDropStatement
Sourcepub fn new() -> Self
pub fn new() -> Self
Construct a new IndexDropStatement
Sourcepub fn table<T>(&mut self, table: T) -> &mut Selfwhere
T: IntoTableRef,
pub fn table<T>(&mut self, table: T) -> &mut Selfwhere
T: IntoTableRef,
Set target table
pub fn if_exists(&mut self) -> &mut Self
Sourcepub fn concurrently(&mut self) -> &mut Self
pub fn concurrently(&mut self) -> &mut Self
Set index to be dropped concurrently. Only available on Postgres.
Source§impl IndexDropStatement
impl IndexDropStatement
Sourcepub fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
pub fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Sourcepub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
pub fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Trait Implementations§
Source§impl Clone for IndexDropStatement
impl Clone for IndexDropStatement
Source§fn clone(&self) -> IndexDropStatement
fn clone(&self) -> IndexDropStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexDropStatement
impl Debug for IndexDropStatement
Source§impl Default for IndexDropStatement
impl Default for IndexDropStatement
Source§fn default() -> IndexDropStatement
fn default() -> IndexDropStatement
Returns the “default value” for a type. Read more
Source§impl SchemaStatementBuilder for IndexDropStatement
impl SchemaStatementBuilder for IndexDropStatement
Source§fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
fn build<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
Source§fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
fn to_string<T>(&self, schema_builder: T) -> Stringwhere
T: SchemaBuilder,
Build corresponding SQL statement for certain database backend and return SQL string
Auto Trait Implementations§
impl Freeze for IndexDropStatement
impl RefUnwindSafe for IndexDropStatement
impl Send for IndexDropStatement
impl Sync for IndexDropStatement
impl Unpin for IndexDropStatement
impl UnwindSafe for IndexDropStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more