[Bug](doe) fix closing scanner twice (#12408)

This commit is contained in:
Gabriel
2022-09-07 22:45:30 +08:00
committed by GitHub
parent 569ab30556
commit 86e347f3bb
2 changed files with 0 additions and 5 deletions

View File

@ -19,10 +19,6 @@
namespace doris::vectorized {
VEsHttpScanner::~VEsHttpScanner() {
close();
}
Status VEsHttpScanner::get_next(std::vector<vectorized::MutableColumnPtr>& columns,
MemPool* tuple_pool, bool* eof,
const std::map<std::string, std::string>& docvalue_context) {

View File

@ -30,7 +30,6 @@ public:
bool doc_value_mode)
: EsHttpScanner(state, profile, tuple_id, properties, conjunct_ctxs, counter,
doc_value_mode) {};
~VEsHttpScanner();
Status get_next(std::vector<vectorized::MutableColumnPtr>& columns, MemPool* tuple_pool,
bool* eof, const std::map<std::string, std::string>& docvalue_context);