| 7 | namespace function { |
| 8 | |
| 9 | void TableFuncBindInput::addLiteralParam(common::Value value) { |
| 10 | params.push_back(std::make_shared<binder::LiteralExpression>(std::move(value), "")); |
| 11 | } |
| 12 | |
| 13 | common::Value TableFuncBindInput::getValue(common::idx_t idx) const { |
| 14 | binder::ExpressionUtil::validateExpressionType(*params[idx], common::ExpressionType::LITERAL); |
no test coverage detected