#include #include #include #include #include namespace DB { String IAccessEntity::getTypeName(std::type_index type) { if (type == typeid(User)) return "User"; if (type == typeid(Quota)) return "Quota"; if (type == typeid(RowPolicy)) return "Row policy"; return demangle(type.name()); } bool IAccessEntity::equal(const IAccessEntity & other) const { return (full_name == other.full_name) && (getType() == other.getType()); } }