#include "drogon/nosql/RedisResult.h"
#include "trantor/utils/Logger.h"
namespace drogon
{
namespace nosql
{
std::string RedisResult::getStringForDisplaying() const noexcept
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
std::string RedisResult::getStringForDisplayingWithIndent(
    size_t ) const noexcept
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
std::string RedisResult::asString() const noexcept(false)
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
RedisResultType RedisResult::type() const noexcept
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
std::vector<RedisResult> RedisResult::asArray() const noexcept(false)
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
long long RedisResult::asInteger() const noexcept(false)
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
bool RedisResult::isNil() const noexcept
{
    LOG_FATAL << "Redis is not supported by drogon, please install the "
                 "hiredis library first.";
    abort();
}
}  
}  