| 1418 | } |
| 1419 | |
| 1420 | LogicalType parseUnionType(const std::string& trimmedStr, main::ClientContext* context) { |
| 1421 | return LogicalType::UNION(parseStructTypeInfo(trimmedStr, context, "UNION")); |
| 1422 | } |
| 1423 | |
| 1424 | LogicalType parseDecimalType(const std::string& trimmedStr) { |
| 1425 | auto leftBracketPos = trimmedStr.find_last_of('('); |
no test coverage detected