these variable are getting initialized on s3select/CSV flow, no valgrind local run had discovered any issue related to these variables.
valgrind reports produced by teuthology points on run_s3select_on_csv to contain UninitCondition warning. sometimes.
Signed-off-by: galsalomon66 <gal.salomon@gmail.com>
m_start_scan_sz(0),
m_end_scan_sz(0),
m_object_size_for_processing(0),
+ enable_progress(false),
m_parquet_type(false),
m_json_type(false),
chunk_number(0),
int RGWSelectObj_ObjStore_S3::run_s3select_on_csv(const char* query, const char* input, size_t input_length)
{
int status = 0;
- uint32_t length_before_processing, length_post_processing;
+ uint32_t length_before_processing = 0, length_post_processing = 0;
csv_object::csv_defintions csv;
s3select_syntax.parse_query(query);