fix connection leak

This commit is contained in:
obdev
2022-11-14 09:08:45 +00:00
committed by wangzelin.wzl
parent fd244b7990
commit 82f18deb07
2 changed files with 6 additions and 7 deletions

View File

@ -199,9 +199,9 @@ int ObExprToOutfileRow::to_outfile_str(const ObExpr &expr, ObEvalCtx &ctx, ObDat
}
} while (OB_SIZE_OVERFLOW == ret
&& OB_SUCC(extend_buffer(*out_info, ctx.exec_ctx_.get_allocator())));
}
}
return ret;
}
}
return ret;
}
int ObExprToOutfileRow::extract_fisrt_wchar_from_varhcar(const ObObj &obj, int32_t &wchar)