| 53 | } |
| 54 | |
| 55 | static std::string getUnsupportedTypeErrMsg(const LogicalType& type) { |
| 56 | return std::format("Unsupported data type {}.", type.toString()); |
| 57 | } |
| 58 | |
| 59 | static uint32_t getElementSize(const LogicalType& type) { |
| 60 | switch (type.getLogicalTypeID()) { |
no test coverage detected