return qsr;
}
public static QuerySubmitResponse fromThrift(TQuerySubmitResponse other) {
String msg = other.getMsg();
TFlowId tId = other.getFlowId();
FlowId id = tId == null ? null : FlowId.fromThrift(tId);
return new QuerySubmitResponse(msg, id);
}