| 37 | } |
| 38 | |
| 39 | static void checkSettings(const MaterializeMySQLSettings & settings_local) |
| 40 | { |
| 41 | if (!settings_local.include_tables.value.empty() && !settings_local.exclude_tables.value.empty()) |
| 42 | throw Exception("Can not set both settings: include_tables and exclude_tables", ErrorCodes::BAD_ARGUMENTS); |
| 43 | } |
| 44 | |
| 45 | DatabaseCnchMaterializedMySQL::DatabaseCnchMaterializedMySQL(ContextPtr local_context, |
| 46 | const String & database_name_, UUID uuid_, |
no test coverage detected