| 116 | } |
| 117 | |
| 118 | void DatabaseCnchMaterializedMySQL::createTable(ContextPtr local_context, const String & table_name, const StoragePtr & table, const ASTPtr & query) |
| 119 | { |
| 120 | if (!local_context->getSettings().force_manipulate_materialized_mysql_table) |
| 121 | throw Exception("Cannot create table without force_manipulate_materialized_mysql_table, engine: " + getEngineName(), ErrorCodes::NOT_IMPLEMENTED); |
| 122 | |
| 123 | DatabaseCnch::createTable(local_context, table_name, table, query); |
| 124 | } |
| 125 | |
| 126 | void DatabaseCnchMaterializedMySQL::dropTable(ContextPtr local_context, const String & table_name, bool no_delay) |
| 127 | { |
nothing calls this directly
no test coverage detected