lbug 0.15.4

An in-process property graph database management system built for query speed and scalability
Documentation
#include "binder/expression/scalar_function_expression.h"

#include "binder/expression/expression_util.h"
#include <format>

using namespace lbug::common;

namespace lbug {
namespace binder {

std::string ScalarFunctionExpression::toStringInternal() const {
    if (function->name.starts_with("CAST")) {
        return std::format("CAST({}, {})", ExpressionUtil::toString(children),
            bindData->resultType.toString());
    }
    return std::format("{}({})", function->name, ExpressionUtil::toString(children));
}

std::string ScalarFunctionExpression::getUniqueName(const std::string& functionName,
    const expression_vector& children) {
    return std::format("{}({})", functionName, ExpressionUtil::getUniqueName(children));
}

} // namespace binder
} // namespace lbug