Corrected _is_aggregate_expression

This commit is contained in:
JUAN DENT
2017-12-18 16:44:16 -06:00
parent 13e1ac3a78
commit 5cb081a721

View File

@@ -64,7 +64,7 @@ namespace sqlpp
using _nodes = detail::type_vector<Expr, aggregate_function>;
using _can_be_null = std::true_type;
using _is_aggregate_expression = std::true_type;
using _is_aggregate_expression = std::false_type;
using _auto_alias_t = trim_alias_t;