Adds at the beginning a raw SQL query. Is useful to create a more complex alter table signature. ### Example ``` # use sql_query_builder as sql; let create_table_query = sql::AlterTable::new() .raw("ALTER TABLE IF EXISTS users") .drop("legacy_column") .as_string(); # let expected = "ALTER TABLE IF EXISTS users DROP legacy_column"; # assert_eq!(expected, create_table_query); ``` Output ```sql
(mut self, raw_sql: &str)
| 224 | /// ALTER TABLE IF EXISTS users DROP legacy_column |
| 225 | /// ``` |
| 226 | pub fn raw(mut self, raw_sql: &str) -> Self { |
| 227 | push_unique(&mut self._raw, raw_sql.trim().to_string()); |
| 228 | self |
| 229 | } |
| 230 | |
| 231 | /// Adds a raw SQL query after a specified parameter. |
| 232 | /// |
nothing calls this directly
no test coverage detected