yiguolei commented on code in PR #24978: URL: https://github.com/apache/doris/pull/24978#discussion_r1349512509
########## be/src/http/action/http_stream.cpp: ########## @@ -245,13 +245,13 @@ void HttpStreamAction::on_chunk_data(HttpRequest* req) { if (ctx->schema_buffer->pos + remove_bytes < config::stream_tvf_buffer_size) { ctx->schema_buffer->put_bytes(bb->ptr, remove_bytes); } else { - ctx->need_schema = true; + LOG(INFO) << "use a portion of data to request fe to obtain column information"; ctx->is_read_schema = false; Review Comment: Does is_read_schema need to be a member in ctx??? I think it could just be a local variable in this function. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org