| 77 | int32_t suppress_errors_; |
| 78 | |
| 79 | void return_error(ExecutionContext* context, std::string& data) const { |
| 80 | if (suppress_errors_ != 0) { |
| 81 | return; |
| 82 | } |
| 83 | |
| 84 | std::string err_msg = "Error parsing the period: " + data + "."; |
| 85 | context->set_error_msg(err_msg.c_str()); |
| 86 | } |
| 87 | }; |
| 88 | |
| 89 | /// Function Holder for castINTERVALDAY function |
no test coverage detected