Coverage Report

Created: 2026-07-07 07:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/duckdb/src/planner/expression/bound_expanded_expression.cpp
Line
Count
Source
1
#include "duckdb/planner/expression/bound_expanded_expression.hpp"
2
3
namespace duckdb {
4
5
BoundExpandedExpression::BoundExpandedExpression(vector<unique_ptr<Expression>> expanded_expressions_p)
6
0
    : Expression(ExpressionType::BOUND_EXPANDED, ExpressionClass::BOUND_EXPANDED, LogicalType::INTEGER),
7
0
      children(std::move(expanded_expressions_p)) {
8
0
}
9
10
0
string BoundExpandedExpression::ToString() const {
11
0
  return "BOUND_EXPANDED";
12
0
}
13
14
0
bool BoundExpandedExpression::Equals(const BaseExpression &other_p) const {
15
0
  return false;
16
0
}
17
18
0
unique_ptr<Expression> BoundExpandedExpression::Copy() const {
19
0
  throw SerializationException("Cannot copy BoundExpandedExpression");
20
0
}
21
22
} // namespace duckdb