sea_query/index/drop.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
use inherent::inherent;
use crate::{backend::SchemaBuilder, types::*, SchemaStatementBuilder, TableIndex};
/// 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""#
/// );
/// ```
#[derive(Default, Debug, Clone)]
pub struct IndexDropStatement {
pub(crate) table: Option<TableRef>,
pub(crate) index: TableIndex,
pub(crate) if_exists: bool,
}
impl IndexDropStatement {
/// Construct a new [`IndexDropStatement`]
pub fn new() -> Self {
Self::default()
}
/// Set index name
pub fn name<T>(&mut self, name: T) -> &mut Self
where
T: Into<String>,
{
self.index.name(name);
self
}
/// Set target table
pub fn table<T>(&mut self, table: T) -> &mut Self
where
T: IntoTableRef,
{
self.table = Some(table.into_table_ref());
self
}
pub fn if_exists(&mut self) -> &mut Self {
self.if_exists = true;
self
}
}
#[inherent]
impl SchemaStatementBuilder for IndexDropStatement {
pub fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String {
let mut sql = String::with_capacity(256);
schema_builder.prepare_index_drop_statement(self, &mut sql);
sql
}
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String {
let mut sql = String::with_capacity(256);
schema_builder.prepare_index_drop_statement(self, &mut sql);
sql
}
pub fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String;
}