MCPcopy Create free account
hub / github.com/MariaDB/server / append_drop_column

Function append_drop_column

sql/sql_table.cc:8475–8482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8473
8474
8475static inline
8476void 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

Callers 1

Calls 3

append_identifierFunction · 0.70
lengthMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected