| 8473 | |
| 8474 | |
| 8475 | static inline |
| 8476 | void append_drop_column(THD *thd, String *str, Field *field) |
| 8477 | { |
| 8478 | if (str->length()) |
| 8479 | str->append(STRING_WITH_LEN(", ")); |
| 8480 | str->append(STRING_WITH_LEN("DROP COLUMN ")); |
| 8481 | append_identifier(thd, str, &field->field_name); |
| 8482 | } |
| 8483 | |
| 8484 | |
| 8485 | #ifdef WITH_PARTITION_STORAGE_ENGINE |
no test coverage detected