| 36 | using std::vector; |
| 37 | |
| 38 | void LogSketchDeserializationError(FunctionContext* ctx, const std::exception& e) { |
| 39 | ctx->SetError(strings::Substitute("Unable to deserialize sketch: $0", |
| 40 | e.what()).c_str()); |
| 41 | } |
| 42 | |
| 43 | StringVal StringStreamToStringVal(FunctionContext* ctx, const stringstream& str_stream) { |
| 44 | string str = str_stream.str(); |
no test coverage detected