2015-04-07 18:20:06,415 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:06,415 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:06,419 INFO [main]: ql.Driver (SessionState.java:printInfo(949)) - OK
2015-04-07 18:20:06,419 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:06,419 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:06,419 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:06,420 DEBUG [main]: ql.Driver (DriverContext.java:shutdown(132)) - Shutting down query use tpcds_bin_orc_200
2015-04-07 18:20:06,420 INFO [main]: CliDriver (SessionState.java:printInfo(949)) - Time taken: 0.523 seconds
2015-04-07 18:20:06,420 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:06,420 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:20,900 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:20,900 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:20,900 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:20,901 DEBUG [main]: parse.VariableSubstitution (VariableSubstitution.java:substitute(53)) - Substitution is on: explain with ssr as (select s_store_id as store_id, sum(ss_ext_sales_price) as sales, sum(coalesce(sr_return_amt, 0)) as returns, sum(ss_net_profit - coalesce(sr_net_loss, 0)) as profit from store_sales left outer join store_returns on (ss_item_sk = sr_item_sk and ss_ticket_number = sr_ticket_number), date_dim, store, item, promotion where ss_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ss_store_sk = s_store_sk and ss_item_sk = i_item_sk and i_current_price > 50 and ss_promo_sk = p_promo_sk and p_channel_tv = 'N' group by s_store_id) , csr as (select cp_catalog_page_id as catalog_page_id, sum(cs_ext_sales_price) as sales, sum(coalesce(cr_return_amount, 0)) as returns, sum(cs_net_profit - coalesce(cr_net_loss, 0)) as profit from catalog_sales left outer join catalog_returns on (cs_item_sk = cr_item_sk and cs_order_number = cr_order_number), date_dim, catalog_page, item, promotion where cs_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and cs_catalog_page_sk = cp_catalog_page_sk and cs_item_sk = i_item_sk and i_current_price > 50 and cs_promo_sk = p_promo_sk and p_channel_tv = 'N' group by cp_catalog_page_id) , wsr as (select web_site_id, sum(ws_ext_sales_price) as sales, sum(coalesce(wr_return_amt, 0)) as returns, sum(ws_net_profit - coalesce(wr_net_loss, 0)) as profit from web_sales left outer join web_returns on (ws_item_sk = wr_item_sk and ws_order_number = wr_order_number), date_dim, web_site, item, promotion where ws_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ws_web_site_sk = web_site_sk and ws_item_sk = i_item_sk and i_current_price > 50 and ws_promo_sk = p_promo_sk and p_channel_tv = 'N' group by web_site_id) select channel , id , sum(sales) as sales , sum(returns) as returns , sum(profit) as profit from (select 'store channel' as channel , concat('store', store_id) as id , sales , returns , profit from ssr union all select 'catalog channel' as channel , concat('catalog_page', catalog_page_id) as id , sales , returns , profit from csr union all select 'web channel' as channel , concat('web_site', web_site_id) as id , sales , returns , profit from wsr ) x group by channel, id with rollup order by channel ,id limit 100
2015-04-07 18:20:20,902 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:20,902 INFO [main]: parse.ParseDriver (ParseDriver.java:parse(185)) - Parsing command: explain with ssr as (select s_store_id as store_id, sum(ss_ext_sales_price) as sales, sum(coalesce(sr_return_amt, 0)) as returns, sum(ss_net_profit - coalesce(sr_net_loss, 0)) as profit from store_sales left outer join store_returns on (ss_item_sk = sr_item_sk and ss_ticket_number = sr_ticket_number), date_dim, store, item, promotion where ss_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ss_store_sk = s_store_sk and ss_item_sk = i_item_sk and i_current_price > 50 and ss_promo_sk = p_promo_sk and p_channel_tv = 'N' group by s_store_id) , csr as (select cp_catalog_page_id as catalog_page_id, sum(cs_ext_sales_price) as sales, sum(coalesce(cr_return_amount, 0)) as returns, sum(cs_net_profit - coalesce(cr_net_loss, 0)) as profit from catalog_sales left outer join catalog_returns on (cs_item_sk = cr_item_sk and cs_order_number = cr_order_number), date_dim, catalog_page, item, promotion where cs_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and cs_catalog_page_sk = cp_catalog_page_sk and cs_item_sk = i_item_sk and i_current_price > 50 and cs_promo_sk = p_promo_sk and p_channel_tv = 'N' group by cp_catalog_page_id) , wsr as (select web_site_id, sum(ws_ext_sales_price) as sales, sum(coalesce(wr_return_amt, 0)) as returns, sum(ws_net_profit - coalesce(wr_net_loss, 0)) as profit from web_sales left outer join web_returns on (ws_item_sk = wr_item_sk and ws_order_number = wr_order_number), date_dim, web_site, item, promotion where ws_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ws_web_site_sk = web_site_sk and ws_item_sk = i_item_sk and i_current_price > 50 and ws_promo_sk = p_promo_sk and p_channel_tv = 'N' group by web_site_id) select channel , id , sum(sales) as sales , sum(returns) as returns , sum(profit) as profit from (select 'store channel' as channel , concat('store', store_id) as id , sales , returns , profit from ssr union all select 'catalog channel' as channel , concat('catalog_page', catalog_page_id) as id , sales , returns , profit from csr union all select 'web channel' as channel , concat('web_site', web_site_id) as id , sales , returns , profit from wsr ) x group by channel, id with rollup order by channel ,id limit 100
2015-04-07 18:20:20,947 INFO [main]: parse.ParseDriver (ParseDriver.java:parse(209)) - Parse Completed
2015-04-07 18:20:20,947 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:20,948 DEBUG [main]: ql.Driver (Driver.java:recordValidTxns(932)) - Encoding valid txns info 9223372036854775807:
2015-04-07 18:20:20,948 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:20,949 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:analyzeInternal(9995)) - Starting Semantic Analysis
2015-04-07 18:20:20,949 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:20,950 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:20,950 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:20,950 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,950 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,951 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,951 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genResolvedParseTree(9978)) - Completed phase 1 of Semantic Analysis
2015-04-07 18:20:20,951 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:20,951 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:20,951 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:20,955 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,955 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,955 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:20,956 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:20,956 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:21,120 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:21,141 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,143 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,143 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:21,147 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,147 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,148 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,148 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:21,148 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:21,260 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:21,261 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,261 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,261 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:21,265 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,266 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,266 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:21,267 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:21,267 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:21,380 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:21,380 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,380 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,381 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:21,382 INFO [main]: ql.Context (Context.java:getMRScratchDir(328)) - New scratch dir is hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1
2015-04-07 18:20:21,382 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genResolvedParseTree(9982)) - Completed getting MetaData in Semantic Analysis
2015-04-07 18:20:23,131 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_sales { i32 ss_sold_date_sk, i32 ss_sold_time_sk, i32 ss_item_sk, i32 ss_customer_sk, i32 ss_cdemo_sk, i32 ss_hdemo_sk, i32 ss_addr_sk, i32 ss_store_sk, i32 ss_promo_sk, i32 ss_ticket_number, i32 ss_quantity, float ss_wholesale_cost, float ss_list_price, float ss_sales_price, float ss_ext_discount_amt, float ss_ext_sales_price, float ss_ext_wholesale_cost, float ss_ext_list_price, float ss_ext_tax, float ss_coupon_amt, float ss_net_paid, float ss_net_paid_inc_tax, float ss_net_profit, string ss_sold_date}
2015-04-07 18:20:23,187 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_returns { i32 sr_returned_date_sk, i32 sr_return_time_sk, i32 sr_item_sk, i32 sr_customer_sk, i32 sr_cdemo_sk, i32 sr_hdemo_sk, i32 sr_addr_sk, i32 sr_store_sk, i32 sr_reason_sk, i32 sr_ticket_number, i32 sr_return_quantity, float sr_return_amt, float sr_return_tax, float sr_return_amt_inc_tax, float sr_fee, float sr_return_ship_cost, float sr_refunded_cash, float sr_reversed_charge, float sr_store_credit, float sr_net_loss, string sr_returned_date}
2015-04-07 18:20:23,189 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:23,193 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store { i32 s_store_sk, string s_store_id, string s_rec_start_date, string s_rec_end_date, i32 s_closed_date_sk, string s_store_name, i32 s_number_employees, i32 s_floor_space, string s_hours, string s_manager, i32 s_market_id, string s_geography_class, string s_market_desc, string s_market_manager, i32 s_division_id, string s_division_name, i32 s_company_id, string s_company_name, string s_street_number, string s_street_name, string s_street_type, string s_suite_number, string s_city, string s_county, string s_state, string s_zip, string s_country, float s_gmt_offset, float s_tax_precentage}
2015-04-07 18:20:23,197 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:23,199 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:24,226 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,234 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,239 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,253 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery1-subquery1:x-subquery1-subquery1:ssr
2015-04-07 18:20:24,262 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery1-subquery1:x-subquery1-subquery1
2015-04-07 18:20:24,262 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_sales { i32 cs_sold_date_sk, i32 cs_sold_time_sk, i32 cs_ship_date_sk, i32 cs_bill_customer_sk, i32 cs_bill_cdemo_sk, i32 cs_bill_hdemo_sk, i32 cs_bill_addr_sk, i32 cs_ship_customer_sk, i32 cs_ship_cdemo_sk, i32 cs_ship_hdemo_sk, i32 cs_ship_addr_sk, i32 cs_call_center_sk, i32 cs_catalog_page_sk, i32 cs_ship_mode_sk, i32 cs_warehouse_sk, i32 cs_item_sk, i32 cs_promo_sk, i32 cs_order_number, i32 cs_quantity, float cs_wholesale_cost, float cs_list_price, float cs_sales_price, float cs_ext_discount_amt, float cs_ext_sales_price, float cs_ext_wholesale_cost, float cs_ext_list_price, float cs_ext_tax, float cs_coupon_amt, float cs_ext_ship_cost, float cs_net_paid, float cs_net_paid_inc_tax, float cs_net_paid_inc_ship, float cs_net_paid_inc_ship_tax, float cs_net_profit, string cs_sold_date}
2015-04-07 18:20:24,266 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_returns { i32 cr_returned_date_sk, i32 cr_returned_time_sk, i32 cr_item_sk, i32 cr_refunded_customer_sk, i32 cr_refunded_cdemo_sk, i32 cr_refunded_hdemo_sk, i32 cr_refunded_addr_sk, i32 cr_returning_customer_sk, i32 cr_returning_cdemo_sk, i32 cr_returning_hdemo_sk, i32 cr_returning_addr_sk, i32 cr_call_center_sk, i32 cr_catalog_page_sk, i32 cr_ship_mode_sk, i32 cr_warehouse_sk, i32 cr_reason_sk, i32 cr_order_number, i32 cr_return_quantity, float cr_return_amount, float cr_return_tax, float cr_return_amt_inc_tax, float cr_fee, float cr_return_ship_cost, float cr_refunded_cash, float cr_reversed_charge, float cr_store_credit, float cr_net_loss, string cr_returned_date}
2015-04-07 18:20:24,269 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:24,272 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_page { i32 cp_catalog_page_sk, string cp_catalog_page_id, i32 cp_start_date_sk, i32 cp_end_date_sk, string cp_department, i32 cp_catalog_number, i32 cp_catalog_page_number, string cp_description, string cp_type}
2015-04-07 18:20:24,273 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:24,276 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:24,324 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,325 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,327 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,329 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery1-subquery2:x-subquery1-subquery2:csr
2015-04-07 18:20:24,332 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery1-subquery2:x-subquery1-subquery2
2015-04-07 18:20:24,336 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_sales { i32 ws_sold_date_sk, i32 ws_sold_time_sk, i32 ws_ship_date_sk, i32 ws_item_sk, i32 ws_bill_customer_sk, i32 ws_bill_cdemo_sk, i32 ws_bill_hdemo_sk, i32 ws_bill_addr_sk, i32 ws_ship_customer_sk, i32 ws_ship_cdemo_sk, i32 ws_ship_hdemo_sk, i32 ws_ship_addr_sk, i32 ws_web_page_sk, i32 ws_web_site_sk, i32 ws_ship_mode_sk, i32 ws_warehouse_sk, i32 ws_promo_sk, i32 ws_order_number, i32 ws_quantity, float ws_wholesale_cost, float ws_list_price, float ws_sales_price, float ws_ext_discount_amt, float ws_ext_sales_price, float ws_ext_wholesale_cost, float ws_ext_list_price, float ws_ext_tax, float ws_coupon_amt, float ws_ext_ship_cost, float ws_net_paid, float ws_net_paid_inc_tax, float ws_net_paid_inc_ship, float ws_net_paid_inc_ship_tax, float ws_net_profit, string ws_sold_date}
2015-04-07 18:20:24,339 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_returns { i32 wr_returned_date_sk, i32 wr_returned_time_sk, i32 wr_item_sk, i32 wr_refunded_customer_sk, i32 wr_refunded_cdemo_sk, i32 wr_refunded_hdemo_sk, i32 wr_refunded_addr_sk, i32 wr_returning_customer_sk, i32 wr_returning_cdemo_sk, i32 wr_returning_hdemo_sk, i32 wr_returning_addr_sk, i32 wr_web_page_sk, i32 wr_reason_sk, i32 wr_order_number, i32 wr_return_quantity, float wr_return_amt, float wr_return_tax, float wr_return_amt_inc_tax, float wr_fee, float wr_return_ship_cost, float wr_refunded_cash, float wr_reversed_charge, float wr_account_credit, float wr_net_loss, string wr_returned_date}
2015-04-07 18:20:24,343 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:24,347 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_site { i32 web_site_sk, string web_site_id, string web_rec_start_date, string web_rec_end_date, string web_name, i32 web_open_date_sk, i32 web_close_date_sk, string web_class, string web_manager, i32 web_mkt_id, string web_mkt_class, string web_mkt_desc, string web_market_manager, i32 web_company_id, string web_company_name, string web_street_number, string web_street_name, string web_street_type, string web_suite_number, string web_city, string web_county, string web_state, string web_zip, string web_country, float web_gmt_offset, float web_tax_percentage}
2015-04-07 18:20:24,350 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:24,353 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:24,394 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,395 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,397 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,399 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery2:x-subquery2:wsr
2015-04-07 18:20:24,405 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null-subquery2:x-subquery2
2015-04-07 18:20:24,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,410 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:24,418 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genLogicalPlan(2615)) - Created Plan for Query Block null
2015-04-07 18:20:25,041 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,043 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,044 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,044 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,044 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,044 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,373 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,374 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,448 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,448 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,456 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,456 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,482 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,482 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,489 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,489 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,508 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,509 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,553 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:25,554 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:25,728 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,737 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:25,737 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,781 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,784 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,784 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,791 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,793 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,793 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,820 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,822 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,823 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,830 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,832 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,832 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,839 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,841 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,841 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,871 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,873 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,873 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,878 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,880 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,880 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,883 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,886 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,886 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,894 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,895 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:25,895 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,899 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,900 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,900 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,907 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,909 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,909 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,915 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,917 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,917 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,921 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,923 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,923 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,929 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,931 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,931 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,936 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,937 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,937 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,940 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,942 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,942 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,946 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,948 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,948 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,954 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,955 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,955 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,959 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,960 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:25,960 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,966 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,967 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:25,968 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:25,974 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,975 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,975 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,978 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,980 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,980 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,986 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,987 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:25,988 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,991 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,993 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,993 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,995 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:25,997 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:25,997 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:25,999 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,000 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,001 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,005 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,006 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,006 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,008 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,009 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,009 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,013 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,014 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,014 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,018 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,019 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:26,019 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:26,022 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,023 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:26,023 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:26,027 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,028 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,028 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,031 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,032 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,032 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,034 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,035 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,035 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,037 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,038 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,038 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,043 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,043 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,044 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,046 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,047 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,047 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,050 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,051 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,051 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,055 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,056 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,056 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,058 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,059 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,060 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,063 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,064 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,065 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=37656511330.09,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,067 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,068 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:26,068 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:26,070 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,071 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:26,072 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:26,075 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,076 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$1], cs_item_sk=[$2], cs_promo_sk=[$3], cs_order_number=[$4], cs_ext_sales_price=[$5], cs_net_profit=[$6], cr_item_sk=[$7], cr_order_number=[$8], cr_return_amount=[$9], cr_net_loss=[$10])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,076 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,086 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:26,086 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:26,139 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,140 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,140 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,144 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,145 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,145 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,147 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,148 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,149 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,151 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,152 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,152 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,153 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,154 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,155 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,157 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,158 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,159 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,181 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,182 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,182 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,185 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,186 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,186 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,190 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,191 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,191 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,194 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,195 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,195 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,197 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,197 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,198 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,201 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,202 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,202 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,204 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,205 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,205 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,206 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,207 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,207 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,210 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,211 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,211 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,213 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,214 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,215 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,217 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,218 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,218 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,224 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,225 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,225 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,228 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,229 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,229 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,231 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,232 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,232 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,236 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,236 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,237 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,238 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,239 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,239 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,241 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,242 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,242 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,244 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,245 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,246 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,247 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,248 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,248 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,250 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,251 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,251 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,252 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,255 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,255 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,258 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,259 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,259 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,260 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,261 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,261 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,264 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,264 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,265 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,266 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,267 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,267 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,269 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,269 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,270 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,272 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,273 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,273 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,275 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,275 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,276 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,277 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,278 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,278 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,280 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,281 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,281 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,285 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,285 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,286 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,287 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,288 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,288 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,290 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,291 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,291 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,293 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,293 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,294 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,295 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,296 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,296 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,298 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,299 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,299 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,301 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,302 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,302 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,303 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,304 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,304 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,306 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,307 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$1], ss_store_sk=[$2], ss_promo_sk=[$3], ss_ticket_number=[$4], ss_ext_sales_price=[$5], ss_net_profit=[$6], sr_item_sk=[$7], sr_ticket_number=[$8], sr_return_amt=[$9], sr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,307 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,316 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:26,316 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:26,387 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,389 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,389 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,392 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,393 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,394 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,396 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,397 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,397 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,399 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,400 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,400 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,402 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,402 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,403 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,405 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,406 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,408 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=9032831341.96,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,432 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,433 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,433 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,436 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,437 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,437 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,439 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,440 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,440 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,443 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,443 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,444 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,445 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,446 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,446 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,448 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,449 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,449 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,450 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,451 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,451 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,453 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,453 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,454 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,458 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,459 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,459 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=9032831341.96,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,461 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,462 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,462 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,463 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,464 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,464 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,467 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,468 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,468 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,470 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,471 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,471 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,473 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,473 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,473 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,475 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,476 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,476 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,478 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,478 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,479 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,480 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,481 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,481 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,485 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,486 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,486 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,487 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,488 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,488 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,489 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,490 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,490 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,492 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,493 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,493 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,495 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,495 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,496 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,497 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,498 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,498 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,500 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,500 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,501 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,502 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,503 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,503 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,504 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,505 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,505 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,507 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,508 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,510 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=9032831341.96,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,511 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,512 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,512 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,514 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,514 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,515 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,516 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,517 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,517 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,519 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,520 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,520 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,521 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,522 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,522 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,524 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,525 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,525 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,526 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,527 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,527 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,528 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,529 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,529 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=27098494025.89,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,531 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,533 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,534 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=9032831341.96,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,535 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,536 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,536 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,538 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,538 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,538 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,540 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,541 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$1], ws_web_site_sk=[$2], ws_promo_sk=[$3], ws_order_number=[$4], ws_ext_sales_price=[$5], ws_net_profit=[$6], wr_item_sk=[$7], wr_order_number=[$8], wr_return_amt=[$9], wr_net_loss=[$10])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,541 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,736 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:apply(744)) - CBO Planning details:
2015-04-07 18:20:26,741 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:apply(745)) - Original Plan:
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)], GROUPING__ID=[GROUPING__ID()])
HiveProject($f0=[$0], $f1=[$1], $f2=[$2], $f3=[$3], $f4=[$4])
HiveUnion(all=[true])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['store channel'], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveProject(store_id=[$0], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$83], $f1=[$15], $f2=[coalesce($38, 0)], $f3=[-($22, coalesce($46, 0))])
HiveFilter(condition=[AND(=($0, $51), between(false, $53, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE), =($7, $82), =($2, $114), >($119, 5E1), =($8, $139), =($150, 'N'))])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[AND(=($2, $29), =($9, $36))], joinType=[left])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['catalog channel'], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveProject(catalog_page_id=[$0], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$101], $f1=[$23], $f2=[coalesce($56, 0)], $f3=[-($33, coalesce($64, 0))])
HiveFilter(condition=[AND(=($0, $69), between(false, $71, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE), =($12, $100), =($15, $112), >($117, 5E1), =($16, $137), =($148, 'N'))])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[AND(=($15, $40), =($17, $54))], joinType=[left])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['web channel'], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveProject(web_site_id=[$0], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$98], $f1=[$23], $f2=[coalesce($53, 0)], $f3=[-($33, coalesce($61, 0))])
HiveFilter(condition=[AND(=($0, $66), between(false, $68, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE), =($13, $97), =($3, $126), >($131, 5E1), =($16, $151), =($162, 'N'))])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[true], joinType=[inner])
HiveJoin(condition=[AND(=($3, $40), =($17, $51))], joinType=[left])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,744 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:apply(746)) - Plan After PPD, PartPruning, ColumnPruning:
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)])
HiveUnion(all=[true])
HiveUnion(all=[true])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['store channel'], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['catalog channel'], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST($0):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveProject(channel=['web channel'], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($2, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,747 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,748 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,749 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=30572157468594768.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,750 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,751 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,752 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=418515756117.06,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,754 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,755 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,755 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=139505252039.02,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,757 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,758 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $17)], joinType=[inner])
HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
2015-04-07 18:20:26,758 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=69752626019.51,ndv=224.00)
PKInfo:PKInfo(rowCount=212.00,ndv=172.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.77
2015-04-07 18:20:26,764 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,765 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,765 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=8252311488455487.00,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,767 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,768 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
2015-04-07 18:20:26,768 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=112969533990.27,ndv=1612098.00)
PKInfo:PKInfo(rowCount=11718.00,ndv=11718.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.01
2015-04-07 18:20:26,770 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,771 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,771 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=821151691.34,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,773 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,774 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,774 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=273717230.45,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,777 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,777 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
2015-04-07 18:20:26,778 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=1979517890097024.00,ndv=2090632.00)
PKInfo:PKInfo(rowCount=38.00,ndv=25.00,selectivity=1.00)
isPKSideSimple:true
NDV Scaling Factor:0.00
2015-04-07 18:20:26,780 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,781 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
2015-04-07 18:20:26,781 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=23671285645.88,ndv=-1.00)
PKInfo:PKInfo(rowCount=1.00,ndv=-1.00,selectivity=0.00)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,783 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,784 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
2015-04-07 18:20:26,784 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=324046.68,ndv=-1.00)
PKInfo:PKInfo(rowCount=16000.00,ndv=-1.00,selectivity=0.33)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,786 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(70)) - Identified Primary - Foreign Key relation:
2015-04-07 18:20:26,787 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(71)) - HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,787 DEBUG [main]: stats.HiveRelMdRowCount (HiveRelMdRowCount.java:getRowCount(72)) - Primary - Foreign Key join:
fkSide = 1
FKInfo:FKInfo(rowCount=108015.56,ndv=-1.00)
PKInfo:PKInfo(rowCount=225.00,ndv=-1.00,selectivity=0.50)
isPKSideSimple:false
NDV Scaling Factor:1.00
2015-04-07 18:20:26,799 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:apply(748)) - Plan After Join Reordering:
HiveSort(fetch=[100]): rowcount = 1072.30265039914, cumulative cost = {4.080475343600328E16 rows, 23575.605300798277 cpu, 0.0 io}, id = 918
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC]): rowcount = 1072.30265039914, cumulative cost = {4.080475343585364E16 rows, 22503.30265039914 cpu, 0.0 io}, id = 916
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6]): rowcount = 1072.30265039914, cumulative cost = {4.0804753435704E16 rows, 21431.0 cpu, 0.0 io}, id = 914
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)]): rowcount = 1072.30265039914, cumulative cost = {4.0804753435704E16 rows, 21431.0 cpu, 0.0 io}, id = 912
HiveUnion(all=[true]): rowcount = 10724.0, cumulative cost = {4.0804753435704E16 rows, 21431.0 cpu, 0.0 io}, id = 910
HiveUnion(all=[true]): rowcount = 10707.0, cumulative cost = {3.88252117161456E16 rows, 10707.0 cpu, 0.0 io}, id = 872
HiveProject(channel=[CAST('store channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3]): rowcount = 117.0, cumulative cost = {3.057278584789994E16 rows, 0.0 cpu, 0.0 io}, id = 1280
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)]): rowcount = 117.0, cumulative cost = {3.057278584789994E16 rows, 0.0 cpu, 0.0 io}, id = 830
HiveProject($f0=[$18], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))]): rowcount = 5.356005212212314E10, cumulative cost = {3.057278584789994E16 rows, 0.0 cpu, 0.0 io}, id = 1274
HiveJoin(condition=[=($2, $17)], joinType=[inner]): rowcount = 5.356005212212314E10, cumulative cost = {3.057278584789994E16 rows, 0.0 cpu, 0.0 io}, id = 1176
HiveJoin(condition=[=($3, $15)], joinType=[inner]): rowcount = 6.97526260195092E10, cumulative cost = {3.0572716095273708E16 rows, 0.0 cpu, 0.0 io}, id = 1174
HiveJoin(condition=[=($1, $13)], joinType=[inner]): rowcount = 1.395052520390184E11, cumulative cost = {3.0572576590021444E16 rows, 0.0 cpu, 0.0 io}, id = 1172
HiveJoin(condition=[=($0, $11)], joinType=[inner]): rowcount = 4.1851575611705524E11, cumulative cost = {3.0572158074249328E16 rows, 0.0 cpu, 0.0 io}, id = 1086
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left]): rowcount = 3.0572157468594768E16, cumulative cost = {6.05654559E8 rows, 0.0 cpu, 0.0 io}, id = 982
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22]): rowcount = 5.50076554E8, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 800
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]]): rowcount = 5.50076554E8, cumulative cost = {0}, id = 0
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19]): rowcount = 5.5578005E7, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 802
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]]): rowcount = 5.5578005E7, cumulative cost = {0}, id = 1
HiveProject(d_date_sk=[$0], d_date=[$2]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 808
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 806
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]]): rowcount = 73049.0, cumulative cost = {0}, id = 2
HiveProject(i_item_sk=[$0], i_current_price=[$5]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 818
HiveFilter(condition=[>($5, 5E1)]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 816
HiveTableScan(table=[[tpcds_bin_orc_200.item]]): rowcount = 48000.0, cumulative cost = {0}, id = 4
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 824
HiveFilter(condition=[=($11, 'N')]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 822
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]]): rowcount = 450.0, cumulative cost = {0}, id = 5
HiveProject(s_store_sk=[$0], s_store_id=[$1]): rowcount = 212.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 812
HiveTableScan(table=[[tpcds_bin_orc_200.store]]): rowcount = 212.0, cumulative cost = {0}, id = 3
HiveProject(channel=[CAST('catalog channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3]): rowcount = 10590.0, cumulative cost = {8.25242586823495E15 rows, 0.0 cpu, 0.0 io}, id = 1278
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)]): rowcount = 10590.0, cumulative cost = {8.25242586823495E15 rows, 0.0 cpu, 0.0 io}, id = 866
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))]): rowcount = 1.368586152225262E8, cumulative cost = {8.25242586823495E15 rows, 0.0 cpu, 0.0 io}, id = 864
HiveJoin(condition=[=($3, $17)], joinType=[inner]): rowcount = 1.368586152225262E8, cumulative cost = {8.25242586823495E15 rows, 0.0 cpu, 0.0 io}, id = 1082
HiveJoin(condition=[=($2, $15)], joinType=[inner]): rowcount = 2.737172304450524E8, cumulative cost = {8.252425594517495E15 rows, 0.0 cpu, 0.0 io}, id = 1080
HiveJoin(condition=[=($1, $13)], joinType=[inner]): rowcount = 8.211516913351573E8, cumulative cost = {8.252424773349804E15 rows, 0.0 cpu, 0.0 io}, id = 1078
HiveJoin(condition=[=($0, $11)], joinType=[inner]): rowcount = 1.1296953399027347E11, cumulative cost = {8.252311803804096E15 rows, 0.0 cpu, 0.0 io}, id = 992
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left]): rowcount = 8.252311488455487E15, cumulative cost = {3.15348608E8 rows, 0.0 cpu, 0.0 io}, id = 977
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33]): rowcount = 2.86549727E8, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 836
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]]): rowcount = 2.86549727E8, cumulative cost = {0}, id = 16
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26]): rowcount = 2.8798881E7, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 838
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]]): rowcount = 2.8798881E7, cumulative cost = {0}, id = 17
HiveProject(d_date_sk=[$0], d_date=[$2]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 844
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 842
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]]): rowcount = 73049.0, cumulative cost = {0}, id = 2
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1]): rowcount = 11718.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 848
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]]): rowcount = 11718.0, cumulative cost = {0}, id = 19
HiveProject(i_item_sk=[$0], i_current_price=[$5]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 854
HiveFilter(condition=[>($5, 5E1)]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 852
HiveTableScan(table=[[tpcds_bin_orc_200.item]]): rowcount = 48000.0, cumulative cost = {0}, id = 4
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 860
HiveFilter(condition=[=($11, 'N')]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 858
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]]): rowcount = 450.0, cumulative cost = {0}, id = 5
HiveProject(channel=[CAST('web channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3]): rowcount = 17.0, cumulative cost = {1.9795417195476762E15 rows, 0.0 cpu, 0.0 io}, id = 1282
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)]): rowcount = 17.0, cumulative cost = {1.9795417195476762E15 rows, 0.0 cpu, 0.0 io}, id = 904
HiveProject($f0=[$12], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))]): rowcount = 54007.77935788289, cumulative cost = {1.9795417195476762E15 rows, 0.0 cpu, 0.0 io}, id = 1276
HiveJoin(condition=[=($3, $17)], joinType=[inner]): rowcount = 54007.77935788289, cumulative cost = {1.9795417195476762E15 rows, 0.0 cpu, 0.0 io}, id = 1270
HiveJoin(condition=[=($1, $15)], joinType=[inner]): rowcount = 108015.55871576579, cumulative cost = {1.9795417194394358E15 rows, 0.0 cpu, 0.0 io}, id = 1268
HiveJoin(condition=[=($0, $13)], joinType=[inner]): rowcount = 324046.6761472974, cumulative cost = {1.979541719099389E15 rows, 0.0 cpu, 0.0 io}, id = 1266
HiveJoin(condition=[=($2, $11)], joinType=[inner]): rowcount = 2.3671285645883926E10, cumulative cost = {1.979518047813742E15 rows, 0.0 cpu, 0.0 io}, id = 1192
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left]): rowcount = 1.979517890097024E15, cumulative cost = {1.5771668E8 rows, 0.0 cpu, 0.0 io}, id = 987
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33]): rowcount = 1.43966864E8, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 874
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]]): rowcount = 1.43966864E8, cumulative cost = {0}, id = 35
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23]): rowcount = 1.3749816E7, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 876
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]]): rowcount = 1.3749816E7, cumulative cost = {0}, id = 36
HiveProject(web_site_sk=[$0], web_site_id=[$1]): rowcount = 38.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 886
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]]): rowcount = 38.0, cumulative cost = {0}, id = 38
HiveProject(d_date_sk=[$0], d_date=[$2]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 882
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)]): rowcount = 1.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 880
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]]): rowcount = 73049.0, cumulative cost = {0}, id = 2
HiveProject(i_item_sk=[$0], i_current_price=[$5]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 892
HiveFilter(condition=[>($5, 5E1)]): rowcount = 16000.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 890
HiveTableScan(table=[[tpcds_bin_orc_200.item]]): rowcount = 48000.0, cumulative cost = {0}, id = 4
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 898
HiveFilter(condition=[=($11, 'N')]): rowcount = 225.0, cumulative cost = {0.0 rows, 0.0 cpu, 0.0 io}, id = 896
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]]): rowcount = 450.0, cumulative cost = {0}, id = 5
2015-04-07 18:20:26,805 DEBUG [main]: translator.PlanModifierForASTConv (PlanModifierForASTConv.java:convertOpTree(68)) - Original plan for PlanModifier
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)])
HiveUnion(all=[true])
HiveUnion(all=[true])
HiveProject(channel=[CAST('store channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$18], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($2, $17)], joinType=[inner])
HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveProject(channel=[CAST('catalog channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST('web channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$12], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,814 DEBUG [main]: translator.PlanModifierForASTConv (PlanModifierForASTConv.java:convertOpTree(81)) - Plan after nested convertOpTree
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[CAST('store channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$18], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($2, $17)], joinType=[inner])
HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveProject(channel=[CAST('catalog channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST('web channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$12], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,817 DEBUG [main]: translator.PlanModifierForASTConv (PlanModifierForASTConv.java:convertOpTree(87)) - Plan after fixTopOBSchema
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[CAST('store channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$18], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($2, $17)], joinType=[inner])
HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveProject(channel=[CAST('catalog channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST('web channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$12], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,819 DEBUG [main]: translator.PlanModifierForASTConv (PlanModifierForASTConv.java:convertOpTree(93)) - Final plan after modifier
HiveSort(fetch=[100])
HiveSort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
HiveProject(channel=[$0], id=[$1], sales=[$4], returns=[$5], profit=[$6])
HiveAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {}]], indicator=[true], agg#0=[sum($2)], agg#1=[sum($3)], agg#2=[sum($4)])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[$0], id=[$1], sales=[$2], returns=[$3], profit=[$4])
HiveUnion(all=[true])
HiveProject(channel=[CAST('store channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('store', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$18], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($2, $17)], joinType=[inner])
HiveJoin(condition=[=($3, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ss_sold_date_sk=[$0], ss_item_sk=[$2], ss_store_sk=[$7], ss_promo_sk=[$8], ss_ticket_number=[$9], ss_ext_sales_price=[$15], ss_net_profit=[$22])
HiveTableScan(table=[[tpcds_bin_orc_200.store_sales]])
HiveProject(sr_item_sk=[$2], sr_ticket_number=[$9], sr_return_amt=[$11], sr_net_loss=[$19])
HiveTableScan(table=[[tpcds_bin_orc_200.store_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(s_store_sk=[$0], s_store_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.store]])
HiveProject(channel=[CAST('catalog channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('catalog_page', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$14], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($2, $15)], joinType=[inner])
HiveJoin(condition=[=($1, $13)], joinType=[inner])
HiveJoin(condition=[=($0, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($2, $7), =($4, $8))], joinType=[left])
HiveProject(cs_sold_date_sk=[$0], cs_catalog_page_sk=[$12], cs_item_sk=[$15], cs_promo_sk=[$16], cs_order_number=[$17], cs_ext_sales_price=[$23], cs_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_sales]])
HiveProject(cr_item_sk=[$2], cr_order_number=[$16], cr_return_amount=[$18], cr_net_loss=[$26])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_returns]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(cp_catalog_page_sk=[$0], cp_catalog_page_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.catalog_page]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
HiveProject(channel=[CAST('web channel'):VARCHAR(2147483647) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL], id=[concat('web_site', $0)], sales=[$1], returns=[$2], profit=[$3])
HiveAggregate(group=[{0}], agg#0=[sum($1)], agg#1=[sum($2)], agg#2=[sum($3)])
HiveProject($f0=[$12], $f1=[$5], $f2=[coalesce($9, 0)], $f3=[-($6, coalesce($10, 0))])
HiveJoin(condition=[=($3, $17)], joinType=[inner])
HiveJoin(condition=[=($1, $15)], joinType=[inner])
HiveJoin(condition=[=($0, $13)], joinType=[inner])
HiveJoin(condition=[=($2, $11)], joinType=[inner])
HiveJoin(condition=[AND(=($1, $7), =($4, $8))], joinType=[left])
HiveProject(ws_sold_date_sk=[$0], ws_item_sk=[$3], ws_web_site_sk=[$13], ws_promo_sk=[$16], ws_order_number=[$17], ws_ext_sales_price=[$23], ws_net_profit=[$33])
HiveTableScan(table=[[tpcds_bin_orc_200.web_sales]])
HiveProject(wr_item_sk=[$2], wr_order_number=[$13], wr_return_amt=[$15], wr_net_loss=[$23])
HiveTableScan(table=[[tpcds_bin_orc_200.web_returns]])
HiveProject(web_site_sk=[$0], web_site_id=[$1])
HiveTableScan(table=[[tpcds_bin_orc_200.web_site]])
HiveProject(d_date_sk=[$0], d_date=[$2])
HiveFilter(condition=[between(false, $2, CAST('1998-08-04'):DATE, CAST('1998-09-04'):DATE)])
HiveTableScan(table=[[tpcds_bin_orc_200.date_dim]])
HiveProject(i_item_sk=[$0], i_current_price=[$5])
HiveFilter(condition=[>($5, 5E1)])
HiveTableScan(table=[[tpcds_bin_orc_200.item]])
HiveProject(p_promo_sk=[$0], p_channel_tv=[$11])
HiveFilter(condition=[=($11, 'N')])
HiveTableScan(table=[[tpcds_bin_orc_200.promotion]])
2015-04-07 18:20:26,837 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,837 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,837 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:26,837 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,838 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,838 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,838 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,839 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,839 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:26,839 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,839 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,839 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,840 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,840 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: coalesce
2015-04-07 18:20:26,841 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: concat
2015-04-07 18:20:26,841 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,841 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,841 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,841 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,842 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,842 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:26,842 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,842 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,842 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,842 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,842 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,859 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,859 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,859 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,871 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,871 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,872 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,884 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,884 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,884 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,896 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,896 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,897 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,908 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,909 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,909 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,921 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,921 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,921 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,921 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,922 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,922 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,922 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,922 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,922 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,939 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,939 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,940 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,959 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,959 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,959 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,978 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,979 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,979 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:26,996 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:26,997 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:26,997 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,015 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,015 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,016 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,034 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,034 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,035 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,036 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,048 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,048 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,048 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,066 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,067 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,067 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,085 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,085 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,085 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,104 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,104 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,104 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,122 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,122 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,122 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1529)) - Get metadata for source tables
2015-04-07 18:20:27,140 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1681)) - Get metadata for subqueries
2015-04-07 18:20:27,141 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,141 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,142 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,142 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,142 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:getMetaData(1705)) - Get metadata for destination tables
2015-04-07 18:20:27,143 INFO [main]: ql.Context (Context.java:getMRScratchDir(328)) - New scratch dir is hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1
2015-04-07 18:20:27,144 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_sales { i32 ss_sold_date_sk, i32 ss_sold_time_sk, i32 ss_item_sk, i32 ss_customer_sk, i32 ss_cdemo_sk, i32 ss_hdemo_sk, i32 ss_addr_sk, i32 ss_store_sk, i32 ss_promo_sk, i32 ss_ticket_number, i32 ss_quantity, float ss_wholesale_cost, float ss_list_price, float ss_sales_price, float ss_ext_discount_amt, float ss_ext_sales_price, float ss_ext_wholesale_cost, float ss_ext_list_price, float ss_ext_tax, float ss_coupon_amt, float ss_net_paid, float ss_net_paid_inc_tax, float ss_net_profit, string ss_sold_date}
2015-04-07 18:20:27,225 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for store_sales TS[0]
2015-04-07 18:20:27,225 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB store_sales{(ss_sold_date_sk,ss_sold_date_sk: int)(ss_sold_time_sk,ss_sold_time_sk: int)(ss_item_sk,ss_item_sk: int)(ss_customer_sk,ss_customer_sk: int)(ss_cdemo_sk,ss_cdemo_sk: int)(ss_hdemo_sk,ss_hdemo_sk: int)(ss_addr_sk,ss_addr_sk: int)(ss_store_sk,ss_store_sk: int)(ss_promo_sk,ss_promo_sk: int)(ss_ticket_number,ss_ticket_number: int)(ss_quantity,ss_quantity: int)(ss_wholesale_cost,ss_wholesale_cost: float)(ss_list_price,ss_list_price: float)(ss_sales_price,ss_sales_price: float)(ss_ext_discount_amt,ss_ext_discount_amt: float)(ss_ext_sales_price,ss_ext_sales_price: float)(ss_ext_wholesale_cost,ss_ext_wholesale_cost: float)(ss_ext_list_price,ss_ext_list_price: float)(ss_ext_tax,ss_ext_tax: float)(ss_coupon_amt,ss_coupon_amt: float)(ss_net_paid,ss_net_paid: float)(ss_net_paid_inc_tax,ss_net_paid_inc_tax: float)(ss_net_profit,ss_net_profit: float)(ss_sold_date,ss_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB store_sales{(ss_sold_date_sk,ss_sold_date_sk: int)(ss_sold_time_sk,ss_sold_time_sk: int)(ss_item_sk,ss_item_sk: int)(ss_customer_sk,ss_customer_sk: int)(ss_cdemo_sk,ss_cdemo_sk: int)(ss_hdemo_sk,ss_hdemo_sk: int)(ss_addr_sk,ss_addr_sk: int)(ss_store_sk,ss_store_sk: int)(ss_promo_sk,ss_promo_sk: int)(ss_ticket_number,ss_ticket_number: int)(ss_quantity,ss_quantity: int)(ss_wholesale_cost,ss_wholesale_cost: float)(ss_list_price,ss_list_price: float)(ss_sales_price,ss_sales_price: float)(ss_ext_discount_amt,ss_ext_discount_amt: float)(ss_ext_sales_price,ss_ext_sales_price: float)(ss_ext_wholesale_cost,ss_ext_wholesale_cost: float)(ss_ext_list_price,ss_ext_list_price: float)(ss_ext_tax,ss_ext_tax: float)(ss_coupon_amt,ss_coupon_amt: float)(ss_net_paid,ss_net_paid: float)(ss_net_paid_inc_tax,ss_net_paid_inc_tax: float)(ss_net_profit,ss_net_profit: float)(ss_sold_date,ss_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,226 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_sold_date_sk) ss_sold_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_item_sk) ss_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_store_sk) ss_store_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_promo_sk) ss_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_ticket_number) ss_ticket_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_ext_sales_price) ss_ext_sales_price) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_sales) ss_net_profit) ss_net_profit))
2015-04-07 18:20:27,226 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = store_sales{(ss_sold_date_sk,ss_sold_date_sk: int)(ss_sold_time_sk,ss_sold_time_sk: int)(ss_item_sk,ss_item_sk: int)(ss_customer_sk,ss_customer_sk: int)(ss_cdemo_sk,ss_cdemo_sk: int)(ss_hdemo_sk,ss_hdemo_sk: int)(ss_addr_sk,ss_addr_sk: int)(ss_store_sk,ss_store_sk: int)(ss_promo_sk,ss_promo_sk: int)(ss_ticket_number,ss_ticket_number: int)(ss_quantity,ss_quantity: int)(ss_wholesale_cost,ss_wholesale_cost: float)(ss_list_price,ss_list_price: float)(ss_sales_price,ss_sales_price: float)(ss_ext_discount_amt,ss_ext_discount_amt: float)(ss_ext_sales_price,ss_ext_sales_price: float)(ss_ext_wholesale_cost,ss_ext_wholesale_cost: float)(ss_ext_list_price,ss_ext_list_price: float)(ss_ext_tax,ss_ext_tax: float)(ss_coupon_amt,ss_coupon_amt: float)(ss_net_paid,ss_net_paid: float)(ss_net_paid_inc_tax,ss_net_paid_inc_tax: float)(ss_net_profit,ss_net_profit: float)(ss_sold_date,ss_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,229 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)}
2015-04-07 18:20:27,230 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,230 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,230 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,230 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_returns { i32 sr_returned_date_sk, i32 sr_return_time_sk, i32 sr_item_sk, i32 sr_customer_sk, i32 sr_cdemo_sk, i32 sr_hdemo_sk, i32 sr_addr_sk, i32 sr_store_sk, i32 sr_reason_sk, i32 sr_ticket_number, i32 sr_return_quantity, float sr_return_amt, float sr_return_tax, float sr_return_amt_inc_tax, float sr_fee, float sr_return_ship_cost, float sr_refunded_cash, float sr_reversed_charge, float sr_store_credit, float sr_net_loss, string sr_returned_date}
2015-04-07 18:20:27,231 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for store_returns TS[2]
2015-04-07 18:20:27,232 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB store_returns{(sr_returned_date_sk,sr_returned_date_sk: int)(sr_return_time_sk,sr_return_time_sk: int)(sr_item_sk,sr_item_sk: int)(sr_customer_sk,sr_customer_sk: int)(sr_cdemo_sk,sr_cdemo_sk: int)(sr_hdemo_sk,sr_hdemo_sk: int)(sr_addr_sk,sr_addr_sk: int)(sr_store_sk,sr_store_sk: int)(sr_reason_sk,sr_reason_sk: int)(sr_ticket_number,sr_ticket_number: int)(sr_return_quantity,sr_return_quantity: int)(sr_return_amt,sr_return_amt: float)(sr_return_tax,sr_return_tax: float)(sr_return_amt_inc_tax,sr_return_amt_inc_tax: float)(sr_fee,sr_fee: float)(sr_return_ship_cost,sr_return_ship_cost: float)(sr_refunded_cash,sr_refunded_cash: float)(sr_reversed_charge,sr_reversed_charge: float)(sr_store_credit,sr_store_credit: float)(sr_net_loss,sr_net_loss: float)(sr_returned_date,sr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB store_returns{(sr_returned_date_sk,sr_returned_date_sk: int)(sr_return_time_sk,sr_return_time_sk: int)(sr_item_sk,sr_item_sk: int)(sr_customer_sk,sr_customer_sk: int)(sr_cdemo_sk,sr_cdemo_sk: int)(sr_hdemo_sk,sr_hdemo_sk: int)(sr_addr_sk,sr_addr_sk: int)(sr_store_sk,sr_store_sk: int)(sr_reason_sk,sr_reason_sk: int)(sr_ticket_number,sr_ticket_number: int)(sr_return_quantity,sr_return_quantity: int)(sr_return_amt,sr_return_amt: float)(sr_return_tax,sr_return_tax: float)(sr_return_amt_inc_tax,sr_return_amt_inc_tax: float)(sr_fee,sr_fee: float)(sr_return_ship_cost,sr_return_ship_cost: float)(sr_refunded_cash,sr_refunded_cash: float)(sr_reversed_charge,sr_reversed_charge: float)(sr_store_credit,sr_store_credit: float)(sr_net_loss,sr_net_loss: float)(sr_returned_date,sr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,232 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_returns) sr_item_sk) sr_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_returns) sr_ticket_number) sr_ticket_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_returns) sr_return_amt) sr_return_amt) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store_returns) sr_net_loss) sr_net_loss))
2015-04-07 18:20:27,232 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = store_returns{(sr_returned_date_sk,sr_returned_date_sk: int)(sr_return_time_sk,sr_return_time_sk: int)(sr_item_sk,sr_item_sk: int)(sr_customer_sk,sr_customer_sk: int)(sr_cdemo_sk,sr_cdemo_sk: int)(sr_hdemo_sk,sr_hdemo_sk: int)(sr_addr_sk,sr_addr_sk: int)(sr_store_sk,sr_store_sk: int)(sr_reason_sk,sr_reason_sk: int)(sr_ticket_number,sr_ticket_number: int)(sr_return_quantity,sr_return_quantity: int)(sr_return_amt,sr_return_amt: float)(sr_return_tax,sr_return_tax: float)(sr_return_amt_inc_tax,sr_return_amt_inc_tax: float)(sr_fee,sr_fee: float)(sr_return_ship_cost,sr_return_ship_cost: float)(sr_refunded_cash,sr_refunded_cash: float)(sr_reversed_charge,sr_reversed_charge: float)(sr_store_credit,sr_store_credit: float)(sr_net_loss,sr_net_loss: float)(sr_returned_date,sr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,236 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(sr_item_sk,_col0: int)(sr_ticket_number,_col1: int)(sr_return_amt,_col2: float)(sr_net_loss,_col3: float)}
2015-04-07 18:20:27,237 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,237 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,237 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,237 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:27,238 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for date_dim TS[4]
2015-04-07 18:20:27,240 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_2 row schema: date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,240 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,241 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date_sk) d_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date) d_date))
2015-04-07 18:20:27,241 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,242 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,242 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,242 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,242 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,242 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:27,243 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for item TS[7]
2015-04-07 18:20:27,244 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_3 row schema: item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,244 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,244 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_item_sk) i_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_current_price) i_current_price))
2015-04-07 18:20:27,245 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,245 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,246 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,246 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,246 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,246 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:27,247 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for promotion TS[10]
2015-04-07 18:20:27,248 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_4 row schema: promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,248 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,248 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_promo_sk) p_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_channel_tv) p_channel_tv))
2015-04-07 18:20:27,248 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,249 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,249 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,249 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,250 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,250 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store { i32 s_store_sk, string s_store_id, string s_rec_start_date, string s_rec_end_date, i32 s_closed_date_sk, string s_store_name, i32 s_number_employees, i32 s_floor_space, string s_hours, string s_manager, i32 s_market_id, string s_geography_class, string s_market_desc, string s_market_manager, i32 s_division_id, string s_division_name, i32 s_company_id, string s_company_name, string s_street_number, string s_street_name, string s_street_type, string s_suite_number, string s_city, string s_county, string s_state, string s_zip, string s_country, float s_gmt_offset, float s_tax_precentage}
2015-04-07 18:20:27,251 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for store TS[13]
2015-04-07 18:20:27,251 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB store{(s_store_sk,s_store_sk: int)(s_store_id,s_store_id: string)(s_rec_start_date,s_rec_start_date: string)(s_rec_end_date,s_rec_end_date: string)(s_closed_date_sk,s_closed_date_sk: int)(s_store_name,s_store_name: string)(s_number_employees,s_number_employees: int)(s_floor_space,s_floor_space: int)(s_hours,s_hours: string)(s_manager,s_manager: string)(s_market_id,s_market_id: int)(s_geography_class,s_geography_class: string)(s_market_desc,s_market_desc: string)(s_market_manager,s_market_manager: string)(s_division_id,s_division_id: int)(s_division_name,s_division_name: string)(s_company_id,s_company_id: int)(s_company_name,s_company_name: string)(s_street_number,s_street_number: string)(s_street_name,s_street_name: string)(s_street_type,s_street_type: string)(s_suite_number,s_suite_number: string)(s_city,s_city: string)(s_county,s_county: string)(s_state,s_state: string)(s_zip,s_zip: string)(s_country,s_country: string)(s_gmt_offset,s_gmt_offset: float)(s_tax_precentage,s_tax_precentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB store{(s_store_sk,s_store_sk: int)(s_store_id,s_store_id: string)(s_rec_start_date,s_rec_start_date: string)(s_rec_end_date,s_rec_end_date: string)(s_closed_date_sk,s_closed_date_sk: int)(s_store_name,s_store_name: string)(s_number_employees,s_number_employees: int)(s_floor_space,s_floor_space: int)(s_hours,s_hours: string)(s_manager,s_manager: string)(s_market_id,s_market_id: int)(s_geography_class,s_geography_class: string)(s_market_desc,s_market_desc: string)(s_market_manager,s_market_manager: string)(s_division_id,s_division_id: int)(s_division_name,s_division_name: string)(s_company_id,s_company_id: int)(s_company_name,s_company_name: string)(s_street_number,s_street_number: string)(s_street_name,s_street_name: string)(s_street_type,s_street_type: string)(s_suite_number,s_suite_number: string)(s_city,s_city: string)(s_county,s_county: string)(s_state,s_state: string)(s_zip,s_zip: string)(s_country,s_country: string)(s_gmt_offset,s_gmt_offset: float)(s_tax_precentage,s_tax_precentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,251 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL store) s_store_sk) s_store_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL store) s_store_id) s_store_id))
2015-04-07 18:20:27,254 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = store{(s_store_sk,s_store_sk: int)(s_store_id,s_store_id: string)(s_rec_start_date,s_rec_start_date: string)(s_rec_end_date,s_rec_end_date: string)(s_closed_date_sk,s_closed_date_sk: int)(s_store_name,s_store_name: string)(s_number_employees,s_number_employees: int)(s_floor_space,s_floor_space: int)(s_hours,s_hours: string)(s_manager,s_manager: string)(s_market_id,s_market_id: int)(s_geography_class,s_geography_class: string)(s_market_desc,s_market_desc: string)(s_market_manager,s_market_manager: string)(s_division_id,s_division_id: int)(s_division_name,s_division_name: string)(s_company_id,s_company_id: int)(s_company_name,s_company_name: string)(s_street_number,s_street_number: string)(s_street_name,s_street_name: string)(s_street_type,s_street_type: string)(s_suite_number,s_suite_number: string)(s_city,s_city: string)(s_county,s_county: string)(s_state,s_state: string)(s_zip,s_zip: string)(s_country,s_country: string)(s_gmt_offset,s_gmt_offset: float)(s_tax_precentage,s_tax_precentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,255 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(s_store_sk,_col0: int)(s_store_id,_col1: string)}
2015-04-07 18:20:27,255 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,255 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,255 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,303 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)}
2015-04-07 18:20:27,304 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_2{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,306 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)}
2015-04-07 18:20:27,306 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_3{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,311 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_3{(i_item_sk,_col13: int)(i_current_price,_col14: float)} $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)}
2015-04-07 18:20:27,312 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_4{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,313 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_4{(p_promo_sk,_col15: int)(p_channel_tv,_col16: string)} $hdt$_3{(i_item_sk,_col13: int)(i_current_price,_col14: float)} $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)}
2015-04-07 18:20:27,314 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0 row schema: $hdt$_5{(s_store_sk,_col0: int)(s_store_id,_col1: string)}
2015-04-07 18:20:27,315 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_4{(p_promo_sk,_col15: int)(p_channel_tv,_col16: string)} $hdt$_3{(i_item_sk,_col13: int)(i_current_price,_col14: float)} $hdt$_5{(s_store_sk,_col17: int)(s_store_id,_col18: string)} $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)} after GB $hdt$_4{(p_promo_sk,_col15: int)(p_channel_tv,_col16: string)} $hdt$_3{(i_item_sk,_col13: int)(i_current_price,_col14: float)} $hdt$_5{(s_store_sk,_col17: int)(s_store_id,_col18: string)} $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)}
2015-04-07 18:20:27,315 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_5) s_store_id) $f0) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) ss_ext_sales_price) $f1) (TOK_SELEXPR (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) sr_return_amt) 0) $f2) (TOK_SELEXPR (- (. (TOK_TABLE_OR_COL $hdt$_0) ss_net_profit) (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) sr_net_loss) 0)) $f3))
2015-04-07 18:20:27,315 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = $hdt$_4{(p_promo_sk,_col15: int)(p_channel_tv,_col16: string)} $hdt$_3{(i_item_sk,_col13: int)(i_current_price,_col14: float)} $hdt$_5{(s_store_sk,_col17: int)(s_store_id,_col18: string)} $hdt$_0{(ss_sold_date_sk,_col0: int)(ss_item_sk,_col1: int)(ss_store_sk,_col2: int)(ss_promo_sk,_col3: int)(ss_ticket_number,_col4: int)(ss_ext_sales_price,_col5: float)(ss_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(sr_item_sk,_col7: int)(sr_ticket_number,_col8: int)(sr_return_amt,_col9: float)(sr_net_loss,_col10: float)} starRr = null
2015-04-07 18:20:27,318 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,318 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,318 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0
2015-04-07 18:20:27,318 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1:$hdt$_0
2015-04-07 18:20:27,319 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,493 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,494 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,499 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)} after GB {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)}
2015-04-07 18:20:27,499 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (TOK_FUNCTION (TOK_STRING 2147483647) 'store channel') channel) (TOK_SELEXPR (TOK_FUNCTION concat 'store' (. (TOK_TABLE_OR_COL $hdt$_0) $f0)) id) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f1)) sales) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f2)) returns) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f3)) profit))
2015-04-07 18:20:27,500 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)} starRr = $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,501 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,501 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,501 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1
2015-04-07 18:20:27,501 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery1:$hdt$_0-subquery1
2015-04-07 18:20:27,502 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_sales { i32 cs_sold_date_sk, i32 cs_sold_time_sk, i32 cs_ship_date_sk, i32 cs_bill_customer_sk, i32 cs_bill_cdemo_sk, i32 cs_bill_hdemo_sk, i32 cs_bill_addr_sk, i32 cs_ship_customer_sk, i32 cs_ship_cdemo_sk, i32 cs_ship_hdemo_sk, i32 cs_ship_addr_sk, i32 cs_call_center_sk, i32 cs_catalog_page_sk, i32 cs_ship_mode_sk, i32 cs_warehouse_sk, i32 cs_item_sk, i32 cs_promo_sk, i32 cs_order_number, i32 cs_quantity, float cs_wholesale_cost, float cs_list_price, float cs_sales_price, float cs_ext_discount_amt, float cs_ext_sales_price, float cs_ext_wholesale_cost, float cs_ext_list_price, float cs_ext_tax, float cs_coupon_amt, float cs_ext_ship_cost, float cs_net_paid, float cs_net_paid_inc_tax, float cs_net_paid_inc_ship, float cs_net_paid_inc_ship_tax, float cs_net_profit, string cs_sold_date}
2015-04-07 18:20:27,503 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for catalog_sales TS[44]
2015-04-07 18:20:27,503 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB catalog_sales{(cs_sold_date_sk,cs_sold_date_sk: int)(cs_sold_time_sk,cs_sold_time_sk: int)(cs_ship_date_sk,cs_ship_date_sk: int)(cs_bill_customer_sk,cs_bill_customer_sk: int)(cs_bill_cdemo_sk,cs_bill_cdemo_sk: int)(cs_bill_hdemo_sk,cs_bill_hdemo_sk: int)(cs_bill_addr_sk,cs_bill_addr_sk: int)(cs_ship_customer_sk,cs_ship_customer_sk: int)(cs_ship_cdemo_sk,cs_ship_cdemo_sk: int)(cs_ship_hdemo_sk,cs_ship_hdemo_sk: int)(cs_ship_addr_sk,cs_ship_addr_sk: int)(cs_call_center_sk,cs_call_center_sk: int)(cs_catalog_page_sk,cs_catalog_page_sk: int)(cs_ship_mode_sk,cs_ship_mode_sk: int)(cs_warehouse_sk,cs_warehouse_sk: int)(cs_item_sk,cs_item_sk: int)(cs_promo_sk,cs_promo_sk: int)(cs_order_number,cs_order_number: int)(cs_quantity,cs_quantity: int)(cs_wholesale_cost,cs_wholesale_cost: float)(cs_list_price,cs_list_price: float)(cs_sales_price,cs_sales_price: float)(cs_ext_discount_amt,cs_ext_discount_amt: float)(cs_ext_sales_price,cs_ext_sales_price: float)(cs_ext_wholesale_cost,cs_ext_wholesale_cost: float)(cs_ext_list_price,cs_ext_list_price: float)(cs_ext_tax,cs_ext_tax: float)(cs_coupon_amt,cs_coupon_amt: float)(cs_ext_ship_cost,cs_ext_ship_cost: float)(cs_net_paid,cs_net_paid: float)(cs_net_paid_inc_tax,cs_net_paid_inc_tax: float)(cs_net_paid_inc_ship,cs_net_paid_inc_ship: float)(cs_net_paid_inc_ship_tax,cs_net_paid_inc_ship_tax: float)(cs_net_profit,cs_net_profit: float)(cs_sold_date,cs_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB catalog_sales{(cs_sold_date_sk,cs_sold_date_sk: int)(cs_sold_time_sk,cs_sold_time_sk: int)(cs_ship_date_sk,cs_ship_date_sk: int)(cs_bill_customer_sk,cs_bill_customer_sk: int)(cs_bill_cdemo_sk,cs_bill_cdemo_sk: int)(cs_bill_hdemo_sk,cs_bill_hdemo_sk: int)(cs_bill_addr_sk,cs_bill_addr_sk: int)(cs_ship_customer_sk,cs_ship_customer_sk: int)(cs_ship_cdemo_sk,cs_ship_cdemo_sk: int)(cs_ship_hdemo_sk,cs_ship_hdemo_sk: int)(cs_ship_addr_sk,cs_ship_addr_sk: int)(cs_call_center_sk,cs_call_center_sk: int)(cs_catalog_page_sk,cs_catalog_page_sk: int)(cs_ship_mode_sk,cs_ship_mode_sk: int)(cs_warehouse_sk,cs_warehouse_sk: int)(cs_item_sk,cs_item_sk: int)(cs_promo_sk,cs_promo_sk: int)(cs_order_number,cs_order_number: int)(cs_quantity,cs_quantity: int)(cs_wholesale_cost,cs_wholesale_cost: float)(cs_list_price,cs_list_price: float)(cs_sales_price,cs_sales_price: float)(cs_ext_discount_amt,cs_ext_discount_amt: float)(cs_ext_sales_price,cs_ext_sales_price: float)(cs_ext_wholesale_cost,cs_ext_wholesale_cost: float)(cs_ext_list_price,cs_ext_list_price: float)(cs_ext_tax,cs_ext_tax: float)(cs_coupon_amt,cs_coupon_amt: float)(cs_ext_ship_cost,cs_ext_ship_cost: float)(cs_net_paid,cs_net_paid: float)(cs_net_paid_inc_tax,cs_net_paid_inc_tax: float)(cs_net_paid_inc_ship,cs_net_paid_inc_ship: float)(cs_net_paid_inc_ship_tax,cs_net_paid_inc_ship_tax: float)(cs_net_profit,cs_net_profit: float)(cs_sold_date,cs_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,503 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_sold_date_sk) cs_sold_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_catalog_page_sk) cs_catalog_page_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_item_sk) cs_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_promo_sk) cs_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_order_number) cs_order_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_ext_sales_price) cs_ext_sales_price) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_sales) cs_net_profit) cs_net_profit))
2015-04-07 18:20:27,504 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = catalog_sales{(cs_sold_date_sk,cs_sold_date_sk: int)(cs_sold_time_sk,cs_sold_time_sk: int)(cs_ship_date_sk,cs_ship_date_sk: int)(cs_bill_customer_sk,cs_bill_customer_sk: int)(cs_bill_cdemo_sk,cs_bill_cdemo_sk: int)(cs_bill_hdemo_sk,cs_bill_hdemo_sk: int)(cs_bill_addr_sk,cs_bill_addr_sk: int)(cs_ship_customer_sk,cs_ship_customer_sk: int)(cs_ship_cdemo_sk,cs_ship_cdemo_sk: int)(cs_ship_hdemo_sk,cs_ship_hdemo_sk: int)(cs_ship_addr_sk,cs_ship_addr_sk: int)(cs_call_center_sk,cs_call_center_sk: int)(cs_catalog_page_sk,cs_catalog_page_sk: int)(cs_ship_mode_sk,cs_ship_mode_sk: int)(cs_warehouse_sk,cs_warehouse_sk: int)(cs_item_sk,cs_item_sk: int)(cs_promo_sk,cs_promo_sk: int)(cs_order_number,cs_order_number: int)(cs_quantity,cs_quantity: int)(cs_wholesale_cost,cs_wholesale_cost: float)(cs_list_price,cs_list_price: float)(cs_sales_price,cs_sales_price: float)(cs_ext_discount_amt,cs_ext_discount_amt: float)(cs_ext_sales_price,cs_ext_sales_price: float)(cs_ext_wholesale_cost,cs_ext_wholesale_cost: float)(cs_ext_list_price,cs_ext_list_price: float)(cs_ext_tax,cs_ext_tax: float)(cs_coupon_amt,cs_coupon_amt: float)(cs_ext_ship_cost,cs_ext_ship_cost: float)(cs_net_paid,cs_net_paid: float)(cs_net_paid_inc_tax,cs_net_paid_inc_tax: float)(cs_net_paid_inc_ship,cs_net_paid_inc_ship: float)(cs_net_paid_inc_ship_tax,cs_net_paid_inc_ship_tax: float)(cs_net_profit,cs_net_profit: float)(cs_sold_date,cs_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,506 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)}
2015-04-07 18:20:27,506 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,506 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,506 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,507 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_returns { i32 cr_returned_date_sk, i32 cr_returned_time_sk, i32 cr_item_sk, i32 cr_refunded_customer_sk, i32 cr_refunded_cdemo_sk, i32 cr_refunded_hdemo_sk, i32 cr_refunded_addr_sk, i32 cr_returning_customer_sk, i32 cr_returning_cdemo_sk, i32 cr_returning_hdemo_sk, i32 cr_returning_addr_sk, i32 cr_call_center_sk, i32 cr_catalog_page_sk, i32 cr_ship_mode_sk, i32 cr_warehouse_sk, i32 cr_reason_sk, i32 cr_order_number, i32 cr_return_quantity, float cr_return_amount, float cr_return_tax, float cr_return_amt_inc_tax, float cr_fee, float cr_return_ship_cost, float cr_refunded_cash, float cr_reversed_charge, float cr_store_credit, float cr_net_loss, string cr_returned_date}
2015-04-07 18:20:27,508 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for catalog_returns TS[46]
2015-04-07 18:20:27,511 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB catalog_returns{(cr_returned_date_sk,cr_returned_date_sk: int)(cr_returned_time_sk,cr_returned_time_sk: int)(cr_item_sk,cr_item_sk: int)(cr_refunded_customer_sk,cr_refunded_customer_sk: int)(cr_refunded_cdemo_sk,cr_refunded_cdemo_sk: int)(cr_refunded_hdemo_sk,cr_refunded_hdemo_sk: int)(cr_refunded_addr_sk,cr_refunded_addr_sk: int)(cr_returning_customer_sk,cr_returning_customer_sk: int)(cr_returning_cdemo_sk,cr_returning_cdemo_sk: int)(cr_returning_hdemo_sk,cr_returning_hdemo_sk: int)(cr_returning_addr_sk,cr_returning_addr_sk: int)(cr_call_center_sk,cr_call_center_sk: int)(cr_catalog_page_sk,cr_catalog_page_sk: int)(cr_ship_mode_sk,cr_ship_mode_sk: int)(cr_warehouse_sk,cr_warehouse_sk: int)(cr_reason_sk,cr_reason_sk: int)(cr_order_number,cr_order_number: int)(cr_return_quantity,cr_return_quantity: int)(cr_return_amount,cr_return_amount: float)(cr_return_tax,cr_return_tax: float)(cr_return_amt_inc_tax,cr_return_amt_inc_tax: float)(cr_fee,cr_fee: float)(cr_return_ship_cost,cr_return_ship_cost: float)(cr_refunded_cash,cr_refunded_cash: float)(cr_reversed_charge,cr_reversed_charge: float)(cr_store_credit,cr_store_credit: float)(cr_net_loss,cr_net_loss: float)(cr_returned_date,cr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB catalog_returns{(cr_returned_date_sk,cr_returned_date_sk: int)(cr_returned_time_sk,cr_returned_time_sk: int)(cr_item_sk,cr_item_sk: int)(cr_refunded_customer_sk,cr_refunded_customer_sk: int)(cr_refunded_cdemo_sk,cr_refunded_cdemo_sk: int)(cr_refunded_hdemo_sk,cr_refunded_hdemo_sk: int)(cr_refunded_addr_sk,cr_refunded_addr_sk: int)(cr_returning_customer_sk,cr_returning_customer_sk: int)(cr_returning_cdemo_sk,cr_returning_cdemo_sk: int)(cr_returning_hdemo_sk,cr_returning_hdemo_sk: int)(cr_returning_addr_sk,cr_returning_addr_sk: int)(cr_call_center_sk,cr_call_center_sk: int)(cr_catalog_page_sk,cr_catalog_page_sk: int)(cr_ship_mode_sk,cr_ship_mode_sk: int)(cr_warehouse_sk,cr_warehouse_sk: int)(cr_reason_sk,cr_reason_sk: int)(cr_order_number,cr_order_number: int)(cr_return_quantity,cr_return_quantity: int)(cr_return_amount,cr_return_amount: float)(cr_return_tax,cr_return_tax: float)(cr_return_amt_inc_tax,cr_return_amt_inc_tax: float)(cr_fee,cr_fee: float)(cr_return_ship_cost,cr_return_ship_cost: float)(cr_refunded_cash,cr_refunded_cash: float)(cr_reversed_charge,cr_reversed_charge: float)(cr_store_credit,cr_store_credit: float)(cr_net_loss,cr_net_loss: float)(cr_returned_date,cr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,511 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_returns) cr_item_sk) cr_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_returns) cr_order_number) cr_order_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_returns) cr_return_amount) cr_return_amount) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_returns) cr_net_loss) cr_net_loss))
2015-04-07 18:20:27,511 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = catalog_returns{(cr_returned_date_sk,cr_returned_date_sk: int)(cr_returned_time_sk,cr_returned_time_sk: int)(cr_item_sk,cr_item_sk: int)(cr_refunded_customer_sk,cr_refunded_customer_sk: int)(cr_refunded_cdemo_sk,cr_refunded_cdemo_sk: int)(cr_refunded_hdemo_sk,cr_refunded_hdemo_sk: int)(cr_refunded_addr_sk,cr_refunded_addr_sk: int)(cr_returning_customer_sk,cr_returning_customer_sk: int)(cr_returning_cdemo_sk,cr_returning_cdemo_sk: int)(cr_returning_hdemo_sk,cr_returning_hdemo_sk: int)(cr_returning_addr_sk,cr_returning_addr_sk: int)(cr_call_center_sk,cr_call_center_sk: int)(cr_catalog_page_sk,cr_catalog_page_sk: int)(cr_ship_mode_sk,cr_ship_mode_sk: int)(cr_warehouse_sk,cr_warehouse_sk: int)(cr_reason_sk,cr_reason_sk: int)(cr_order_number,cr_order_number: int)(cr_return_quantity,cr_return_quantity: int)(cr_return_amount,cr_return_amount: float)(cr_return_tax,cr_return_tax: float)(cr_return_amt_inc_tax,cr_return_amt_inc_tax: float)(cr_fee,cr_fee: float)(cr_return_ship_cost,cr_return_ship_cost: float)(cr_refunded_cash,cr_refunded_cash: float)(cr_reversed_charge,cr_reversed_charge: float)(cr_store_credit,cr_store_credit: float)(cr_net_loss,cr_net_loss: float)(cr_returned_date,cr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,513 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(cr_item_sk,_col0: int)(cr_order_number,_col1: int)(cr_return_amount,_col2: float)(cr_net_loss,_col3: float)}
2015-04-07 18:20:27,513 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,513 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,513 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,514 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:27,515 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for date_dim TS[48]
2015-04-07 18:20:27,517 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_2 row schema: date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,517 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,517 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date_sk) d_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date) d_date))
2015-04-07 18:20:27,517 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,518 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,518 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,519 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,519 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,519 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_page { i32 cp_catalog_page_sk, string cp_catalog_page_id, i32 cp_start_date_sk, i32 cp_end_date_sk, string cp_department, i32 cp_catalog_number, i32 cp_catalog_page_number, string cp_description, string cp_type}
2015-04-07 18:20:27,519 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for catalog_page TS[51]
2015-04-07 18:20:27,520 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB catalog_page{(cp_catalog_page_sk,cp_catalog_page_sk: int)(cp_catalog_page_id,cp_catalog_page_id: string)(cp_start_date_sk,cp_start_date_sk: int)(cp_end_date_sk,cp_end_date_sk: int)(cp_department,cp_department: string)(cp_catalog_number,cp_catalog_number: int)(cp_catalog_page_number,cp_catalog_page_number: int)(cp_description,cp_description: string)(cp_type,cp_type: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB catalog_page{(cp_catalog_page_sk,cp_catalog_page_sk: int)(cp_catalog_page_id,cp_catalog_page_id: string)(cp_start_date_sk,cp_start_date_sk: int)(cp_end_date_sk,cp_end_date_sk: int)(cp_department,cp_department: string)(cp_catalog_number,cp_catalog_number: int)(cp_catalog_page_number,cp_catalog_page_number: int)(cp_description,cp_description: string)(cp_type,cp_type: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,520 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_page) cp_catalog_page_sk) cp_catalog_page_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL catalog_page) cp_catalog_page_id) cp_catalog_page_id))
2015-04-07 18:20:27,520 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = catalog_page{(cp_catalog_page_sk,cp_catalog_page_sk: int)(cp_catalog_page_id,cp_catalog_page_id: string)(cp_start_date_sk,cp_start_date_sk: int)(cp_end_date_sk,cp_end_date_sk: int)(cp_department,cp_department: string)(cp_catalog_number,cp_catalog_number: int)(cp_catalog_page_number,cp_catalog_page_number: int)(cp_description,cp_description: string)(cp_type,cp_type: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,521 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(cp_catalog_page_sk,_col0: int)(cp_catalog_page_id,_col1: string)}
2015-04-07 18:20:27,521 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,521 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,521 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,522 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:27,523 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for item TS[53]
2015-04-07 18:20:27,523 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4 row schema: item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,524 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,524 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_item_sk) i_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_current_price) i_current_price))
2015-04-07 18:20:27,524 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,525 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,525 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,525 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,525 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,526 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:27,526 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for promotion TS[56]
2015-04-07 18:20:27,527 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5 row schema: promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,527 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,530 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_promo_sk) p_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_channel_tv) p_channel_tv))
2015-04-07 18:20:27,530 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,531 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,531 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,531 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,531 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,534 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)}
2015-04-07 18:20:27,535 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_2{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,537 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)}
2015-04-07 18:20:27,538 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_3{(cp_catalog_page_sk,_col0: int)(cp_catalog_page_id,_col1: string)}
2015-04-07 18:20:27,539 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_3{(cp_catalog_page_sk,_col13: int)(cp_catalog_page_id,_col14: string)} $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)}
2015-04-07 18:20:27,540 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_4{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,542 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(cp_catalog_page_sk,_col13: int)(cp_catalog_page_id,_col14: string)} $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)}
2015-04-07 18:20:27,542 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_5{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,543 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(cp_catalog_page_sk,_col13: int)(cp_catalog_page_id,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)} after GB $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(cp_catalog_page_sk,_col13: int)(cp_catalog_page_id,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)}
2015-04-07 18:20:27,543 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_3) cp_catalog_page_id) $f0) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) cs_ext_sales_price) $f1) (TOK_SELEXPR (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) cr_return_amount) 0) $f2) (TOK_SELEXPR (- (. (TOK_TABLE_OR_COL $hdt$_0) cs_net_profit) (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) cr_net_loss) 0)) $f3))
2015-04-07 18:20:27,544 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(cp_catalog_page_sk,_col13: int)(cp_catalog_page_id,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(cs_sold_date_sk,_col0: int)(cs_catalog_page_sk,_col1: int)(cs_item_sk,_col2: int)(cs_promo_sk,_col3: int)(cs_order_number,_col4: int)(cs_ext_sales_price,_col5: float)(cs_net_profit,_col6: float)} $hdt$_2{(d_date_sk,_col11: int)(d_date,_col12: string)} $hdt$_1{(cr_item_sk,_col7: int)(cr_order_number,_col8: int)(cr_return_amount,_col9: float)(cr_net_loss,_col10: float)} starRr = null
2015-04-07 18:20:27,546 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,547 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,547 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0
2015-04-07 18:20:27,547 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2:$hdt$_0
2015-04-07 18:20:27,548 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,548 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,549 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,552 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)} after GB {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)}
2015-04-07 18:20:27,552 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (TOK_FUNCTION (TOK_STRING 2147483647) 'catalog channel') channel) (TOK_SELEXPR (TOK_FUNCTION concat 'catalog_page' (. (TOK_TABLE_OR_COL $hdt$_0) $f0)) id) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f1)) sales) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f2)) returns) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f3)) profit))
2015-04-07 18:20:27,552 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)} starRr = $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,553 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,553 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,554 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2
2015-04-07 18:20:27,554 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1-subquery2:$hdt$_0-subquery2
2015-04-07 18:20:27,555 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} after GB $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,555 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) channel) channel) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) id) id) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) sales) sales) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) returns) returns) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) profit) profit))
2015-04-07 18:20:27,555 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} starRr = null
2015-04-07 18:20:27,557 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,557 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,557 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1
2015-04-07 18:20:27,557 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery1:$hdt$_0-subquery1
2015-04-07 18:20:27,557 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_sales { i32 ws_sold_date_sk, i32 ws_sold_time_sk, i32 ws_ship_date_sk, i32 ws_item_sk, i32 ws_bill_customer_sk, i32 ws_bill_cdemo_sk, i32 ws_bill_hdemo_sk, i32 ws_bill_addr_sk, i32 ws_ship_customer_sk, i32 ws_ship_cdemo_sk, i32 ws_ship_hdemo_sk, i32 ws_ship_addr_sk, i32 ws_web_page_sk, i32 ws_web_site_sk, i32 ws_ship_mode_sk, i32 ws_warehouse_sk, i32 ws_promo_sk, i32 ws_order_number, i32 ws_quantity, float ws_wholesale_cost, float ws_list_price, float ws_sales_price, float ws_ext_discount_amt, float ws_ext_sales_price, float ws_ext_wholesale_cost, float ws_ext_list_price, float ws_ext_tax, float ws_coupon_amt, float ws_ext_ship_cost, float ws_net_paid, float ws_net_paid_inc_tax, float ws_net_paid_inc_ship, float ws_net_paid_inc_ship_tax, float ws_net_profit, string ws_sold_date}
2015-04-07 18:20:27,558 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for web_sales TS[90]
2015-04-07 18:20:27,559 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB web_sales{(ws_sold_date_sk,ws_sold_date_sk: int)(ws_sold_time_sk,ws_sold_time_sk: int)(ws_ship_date_sk,ws_ship_date_sk: int)(ws_item_sk,ws_item_sk: int)(ws_bill_customer_sk,ws_bill_customer_sk: int)(ws_bill_cdemo_sk,ws_bill_cdemo_sk: int)(ws_bill_hdemo_sk,ws_bill_hdemo_sk: int)(ws_bill_addr_sk,ws_bill_addr_sk: int)(ws_ship_customer_sk,ws_ship_customer_sk: int)(ws_ship_cdemo_sk,ws_ship_cdemo_sk: int)(ws_ship_hdemo_sk,ws_ship_hdemo_sk: int)(ws_ship_addr_sk,ws_ship_addr_sk: int)(ws_web_page_sk,ws_web_page_sk: int)(ws_web_site_sk,ws_web_site_sk: int)(ws_ship_mode_sk,ws_ship_mode_sk: int)(ws_warehouse_sk,ws_warehouse_sk: int)(ws_promo_sk,ws_promo_sk: int)(ws_order_number,ws_order_number: int)(ws_quantity,ws_quantity: int)(ws_wholesale_cost,ws_wholesale_cost: float)(ws_list_price,ws_list_price: float)(ws_sales_price,ws_sales_price: float)(ws_ext_discount_amt,ws_ext_discount_amt: float)(ws_ext_sales_price,ws_ext_sales_price: float)(ws_ext_wholesale_cost,ws_ext_wholesale_cost: float)(ws_ext_list_price,ws_ext_list_price: float)(ws_ext_tax,ws_ext_tax: float)(ws_coupon_amt,ws_coupon_amt: float)(ws_ext_ship_cost,ws_ext_ship_cost: float)(ws_net_paid,ws_net_paid: float)(ws_net_paid_inc_tax,ws_net_paid_inc_tax: float)(ws_net_paid_inc_ship,ws_net_paid_inc_ship: float)(ws_net_paid_inc_ship_tax,ws_net_paid_inc_ship_tax: float)(ws_net_profit,ws_net_profit: float)(ws_sold_date,ws_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB web_sales{(ws_sold_date_sk,ws_sold_date_sk: int)(ws_sold_time_sk,ws_sold_time_sk: int)(ws_ship_date_sk,ws_ship_date_sk: int)(ws_item_sk,ws_item_sk: int)(ws_bill_customer_sk,ws_bill_customer_sk: int)(ws_bill_cdemo_sk,ws_bill_cdemo_sk: int)(ws_bill_hdemo_sk,ws_bill_hdemo_sk: int)(ws_bill_addr_sk,ws_bill_addr_sk: int)(ws_ship_customer_sk,ws_ship_customer_sk: int)(ws_ship_cdemo_sk,ws_ship_cdemo_sk: int)(ws_ship_hdemo_sk,ws_ship_hdemo_sk: int)(ws_ship_addr_sk,ws_ship_addr_sk: int)(ws_web_page_sk,ws_web_page_sk: int)(ws_web_site_sk,ws_web_site_sk: int)(ws_ship_mode_sk,ws_ship_mode_sk: int)(ws_warehouse_sk,ws_warehouse_sk: int)(ws_promo_sk,ws_promo_sk: int)(ws_order_number,ws_order_number: int)(ws_quantity,ws_quantity: int)(ws_wholesale_cost,ws_wholesale_cost: float)(ws_list_price,ws_list_price: float)(ws_sales_price,ws_sales_price: float)(ws_ext_discount_amt,ws_ext_discount_amt: float)(ws_ext_sales_price,ws_ext_sales_price: float)(ws_ext_wholesale_cost,ws_ext_wholesale_cost: float)(ws_ext_list_price,ws_ext_list_price: float)(ws_ext_tax,ws_ext_tax: float)(ws_coupon_amt,ws_coupon_amt: float)(ws_ext_ship_cost,ws_ext_ship_cost: float)(ws_net_paid,ws_net_paid: float)(ws_net_paid_inc_tax,ws_net_paid_inc_tax: float)(ws_net_paid_inc_ship,ws_net_paid_inc_ship: float)(ws_net_paid_inc_ship_tax,ws_net_paid_inc_ship_tax: float)(ws_net_profit,ws_net_profit: float)(ws_sold_date,ws_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,559 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_sold_date_sk) ws_sold_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_item_sk) ws_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_web_site_sk) ws_web_site_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_promo_sk) ws_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_order_number) ws_order_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_ext_sales_price) ws_ext_sales_price) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_sales) ws_net_profit) ws_net_profit))
2015-04-07 18:20:27,559 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = web_sales{(ws_sold_date_sk,ws_sold_date_sk: int)(ws_sold_time_sk,ws_sold_time_sk: int)(ws_ship_date_sk,ws_ship_date_sk: int)(ws_item_sk,ws_item_sk: int)(ws_bill_customer_sk,ws_bill_customer_sk: int)(ws_bill_cdemo_sk,ws_bill_cdemo_sk: int)(ws_bill_hdemo_sk,ws_bill_hdemo_sk: int)(ws_bill_addr_sk,ws_bill_addr_sk: int)(ws_ship_customer_sk,ws_ship_customer_sk: int)(ws_ship_cdemo_sk,ws_ship_cdemo_sk: int)(ws_ship_hdemo_sk,ws_ship_hdemo_sk: int)(ws_ship_addr_sk,ws_ship_addr_sk: int)(ws_web_page_sk,ws_web_page_sk: int)(ws_web_site_sk,ws_web_site_sk: int)(ws_ship_mode_sk,ws_ship_mode_sk: int)(ws_warehouse_sk,ws_warehouse_sk: int)(ws_promo_sk,ws_promo_sk: int)(ws_order_number,ws_order_number: int)(ws_quantity,ws_quantity: int)(ws_wholesale_cost,ws_wholesale_cost: float)(ws_list_price,ws_list_price: float)(ws_sales_price,ws_sales_price: float)(ws_ext_discount_amt,ws_ext_discount_amt: float)(ws_ext_sales_price,ws_ext_sales_price: float)(ws_ext_wholesale_cost,ws_ext_wholesale_cost: float)(ws_ext_list_price,ws_ext_list_price: float)(ws_ext_tax,ws_ext_tax: float)(ws_coupon_amt,ws_coupon_amt: float)(ws_ext_ship_cost,ws_ext_ship_cost: float)(ws_net_paid,ws_net_paid: float)(ws_net_paid_inc_tax,ws_net_paid_inc_tax: float)(ws_net_paid_inc_ship,ws_net_paid_inc_ship: float)(ws_net_paid_inc_ship_tax,ws_net_paid_inc_ship_tax: float)(ws_net_profit,ws_net_profit: float)(ws_sold_date,ws_sold_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,561 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)}
2015-04-07 18:20:27,562 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,562 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,562 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_0
2015-04-07 18:20:27,562 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_returns { i32 wr_returned_date_sk, i32 wr_returned_time_sk, i32 wr_item_sk, i32 wr_refunded_customer_sk, i32 wr_refunded_cdemo_sk, i32 wr_refunded_hdemo_sk, i32 wr_refunded_addr_sk, i32 wr_returning_customer_sk, i32 wr_returning_cdemo_sk, i32 wr_returning_hdemo_sk, i32 wr_returning_addr_sk, i32 wr_web_page_sk, i32 wr_reason_sk, i32 wr_order_number, i32 wr_return_quantity, float wr_return_amt, float wr_return_tax, float wr_return_amt_inc_tax, float wr_fee, float wr_return_ship_cost, float wr_refunded_cash, float wr_reversed_charge, float wr_account_credit, float wr_net_loss, string wr_returned_date}
2015-04-07 18:20:27,563 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for web_returns TS[92]
2015-04-07 18:20:27,563 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB web_returns{(wr_returned_date_sk,wr_returned_date_sk: int)(wr_returned_time_sk,wr_returned_time_sk: int)(wr_item_sk,wr_item_sk: int)(wr_refunded_customer_sk,wr_refunded_customer_sk: int)(wr_refunded_cdemo_sk,wr_refunded_cdemo_sk: int)(wr_refunded_hdemo_sk,wr_refunded_hdemo_sk: int)(wr_refunded_addr_sk,wr_refunded_addr_sk: int)(wr_returning_customer_sk,wr_returning_customer_sk: int)(wr_returning_cdemo_sk,wr_returning_cdemo_sk: int)(wr_returning_hdemo_sk,wr_returning_hdemo_sk: int)(wr_returning_addr_sk,wr_returning_addr_sk: int)(wr_web_page_sk,wr_web_page_sk: int)(wr_reason_sk,wr_reason_sk: int)(wr_order_number,wr_order_number: int)(wr_return_quantity,wr_return_quantity: int)(wr_return_amt,wr_return_amt: float)(wr_return_tax,wr_return_tax: float)(wr_return_amt_inc_tax,wr_return_amt_inc_tax: float)(wr_fee,wr_fee: float)(wr_return_ship_cost,wr_return_ship_cost: float)(wr_refunded_cash,wr_refunded_cash: float)(wr_reversed_charge,wr_reversed_charge: float)(wr_account_credit,wr_account_credit: float)(wr_net_loss,wr_net_loss: float)(wr_returned_date,wr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB web_returns{(wr_returned_date_sk,wr_returned_date_sk: int)(wr_returned_time_sk,wr_returned_time_sk: int)(wr_item_sk,wr_item_sk: int)(wr_refunded_customer_sk,wr_refunded_customer_sk: int)(wr_refunded_cdemo_sk,wr_refunded_cdemo_sk: int)(wr_refunded_hdemo_sk,wr_refunded_hdemo_sk: int)(wr_refunded_addr_sk,wr_refunded_addr_sk: int)(wr_returning_customer_sk,wr_returning_customer_sk: int)(wr_returning_cdemo_sk,wr_returning_cdemo_sk: int)(wr_returning_hdemo_sk,wr_returning_hdemo_sk: int)(wr_returning_addr_sk,wr_returning_addr_sk: int)(wr_web_page_sk,wr_web_page_sk: int)(wr_reason_sk,wr_reason_sk: int)(wr_order_number,wr_order_number: int)(wr_return_quantity,wr_return_quantity: int)(wr_return_amt,wr_return_amt: float)(wr_return_tax,wr_return_tax: float)(wr_return_amt_inc_tax,wr_return_amt_inc_tax: float)(wr_fee,wr_fee: float)(wr_return_ship_cost,wr_return_ship_cost: float)(wr_refunded_cash,wr_refunded_cash: float)(wr_reversed_charge,wr_reversed_charge: float)(wr_account_credit,wr_account_credit: float)(wr_net_loss,wr_net_loss: float)(wr_returned_date,wr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,564 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_returns) wr_item_sk) wr_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_returns) wr_order_number) wr_order_number) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_returns) wr_return_amt) wr_return_amt) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_returns) wr_net_loss) wr_net_loss))
2015-04-07 18:20:27,564 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = web_returns{(wr_returned_date_sk,wr_returned_date_sk: int)(wr_returned_time_sk,wr_returned_time_sk: int)(wr_item_sk,wr_item_sk: int)(wr_refunded_customer_sk,wr_refunded_customer_sk: int)(wr_refunded_cdemo_sk,wr_refunded_cdemo_sk: int)(wr_refunded_hdemo_sk,wr_refunded_hdemo_sk: int)(wr_refunded_addr_sk,wr_refunded_addr_sk: int)(wr_returning_customer_sk,wr_returning_customer_sk: int)(wr_returning_cdemo_sk,wr_returning_cdemo_sk: int)(wr_returning_hdemo_sk,wr_returning_hdemo_sk: int)(wr_returning_addr_sk,wr_returning_addr_sk: int)(wr_web_page_sk,wr_web_page_sk: int)(wr_reason_sk,wr_reason_sk: int)(wr_order_number,wr_order_number: int)(wr_return_quantity,wr_return_quantity: int)(wr_return_amt,wr_return_amt: float)(wr_return_tax,wr_return_tax: float)(wr_return_amt_inc_tax,wr_return_amt_inc_tax: float)(wr_fee,wr_fee: float)(wr_return_ship_cost,wr_return_ship_cost: float)(wr_refunded_cash,wr_refunded_cash: float)(wr_reversed_charge,wr_reversed_charge: float)(wr_account_credit,wr_account_credit: float)(wr_net_loss,wr_net_loss: float)(wr_returned_date,wr_returned_date: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,565 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(wr_item_sk,_col0: int)(wr_order_number,_col1: int)(wr_return_amt,_col2: float)(wr_net_loss,_col3: float)}
2015-04-07 18:20:27,565 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,565 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,566 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_1
2015-04-07 18:20:27,566 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_site { i32 web_site_sk, string web_site_id, string web_rec_start_date, string web_rec_end_date, string web_name, i32 web_open_date_sk, i32 web_close_date_sk, string web_class, string web_manager, i32 web_mkt_id, string web_mkt_class, string web_mkt_desc, string web_market_manager, i32 web_company_id, string web_company_name, string web_street_number, string web_street_name, string web_street_type, string web_suite_number, string web_city, string web_county, string web_state, string web_zip, string web_country, float web_gmt_offset, float web_tax_percentage}
2015-04-07 18:20:27,567 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for web_site TS[94]
2015-04-07 18:20:27,567 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB web_site{(web_site_sk,web_site_sk: int)(web_site_id,web_site_id: string)(web_rec_start_date,web_rec_start_date: string)(web_rec_end_date,web_rec_end_date: string)(web_name,web_name: string)(web_open_date_sk,web_open_date_sk: int)(web_close_date_sk,web_close_date_sk: int)(web_class,web_class: string)(web_manager,web_manager: string)(web_mkt_id,web_mkt_id: int)(web_mkt_class,web_mkt_class: string)(web_mkt_desc,web_mkt_desc: string)(web_market_manager,web_market_manager: string)(web_company_id,web_company_id: int)(web_company_name,web_company_name: string)(web_street_number,web_street_number: string)(web_street_name,web_street_name: string)(web_street_type,web_street_type: string)(web_suite_number,web_suite_number: string)(web_city,web_city: string)(web_county,web_county: string)(web_state,web_state: string)(web_zip,web_zip: string)(web_country,web_country: string)(web_gmt_offset,web_gmt_offset: float)(web_tax_percentage,web_tax_percentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB web_site{(web_site_sk,web_site_sk: int)(web_site_id,web_site_id: string)(web_rec_start_date,web_rec_start_date: string)(web_rec_end_date,web_rec_end_date: string)(web_name,web_name: string)(web_open_date_sk,web_open_date_sk: int)(web_close_date_sk,web_close_date_sk: int)(web_class,web_class: string)(web_manager,web_manager: string)(web_mkt_id,web_mkt_id: int)(web_mkt_class,web_mkt_class: string)(web_mkt_desc,web_mkt_desc: string)(web_market_manager,web_market_manager: string)(web_company_id,web_company_id: int)(web_company_name,web_company_name: string)(web_street_number,web_street_number: string)(web_street_name,web_street_name: string)(web_street_type,web_street_type: string)(web_suite_number,web_suite_number: string)(web_city,web_city: string)(web_county,web_county: string)(web_state,web_state: string)(web_zip,web_zip: string)(web_country,web_country: string)(web_gmt_offset,web_gmt_offset: float)(web_tax_percentage,web_tax_percentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,567 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_site) web_site_sk) web_site_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL web_site) web_site_id) web_site_id))
2015-04-07 18:20:27,570 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = web_site{(web_site_sk,web_site_sk: int)(web_site_id,web_site_id: string)(web_rec_start_date,web_rec_start_date: string)(web_rec_end_date,web_rec_end_date: string)(web_name,web_name: string)(web_open_date_sk,web_open_date_sk: int)(web_close_date_sk,web_close_date_sk: int)(web_class,web_class: string)(web_manager,web_manager: string)(web_mkt_id,web_mkt_id: int)(web_mkt_class,web_mkt_class: string)(web_mkt_desc,web_mkt_desc: string)(web_market_manager,web_market_manager: string)(web_company_id,web_company_id: int)(web_company_name,web_company_name: string)(web_street_number,web_street_number: string)(web_street_name,web_street_name: string)(web_street_type,web_street_type: string)(web_suite_number,web_suite_number: string)(web_city,web_city: string)(web_county,web_county: string)(web_state,web_state: string)(web_zip,web_zip: string)(web_country,web_country: string)(web_gmt_offset,web_gmt_offset: float)(web_tax_percentage,web_tax_percentage: float)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,571 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(web_site_sk,_col0: int)(web_site_id,_col1: string)}
2015-04-07 18:20:27,571 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,571 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,571 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_2
2015-04-07 18:20:27,571 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:27,572 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for date_dim TS[96]
2015-04-07 18:20:27,574 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_3 row schema: date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,574 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,574 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date_sk) d_date_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL date_dim) d_date) d_date))
2015-04-07 18:20:27,574 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = date_dim{(d_date_sk,d_date_sk: int)(d_date_id,d_date_id: string)(d_date,d_date: string)(d_month_seq,d_month_seq: int)(d_week_seq,d_week_seq: int)(d_quarter_seq,d_quarter_seq: int)(d_year,d_year: int)(d_dow,d_dow: int)(d_moy,d_moy: int)(d_dom,d_dom: int)(d_qoy,d_qoy: int)(d_fy_year,d_fy_year: int)(d_fy_quarter_seq,d_fy_quarter_seq: int)(d_fy_week_seq,d_fy_week_seq: int)(d_day_name,d_day_name: string)(d_quarter_name,d_quarter_name: string)(d_holiday,d_holiday: string)(d_weekend,d_weekend: string)(d_following_holiday,d_following_holiday: string)(d_first_dom,d_first_dom: int)(d_last_dom,d_last_dom: int)(d_same_day_ly,d_same_day_ly: int)(d_same_day_lq,d_same_day_lq: int)(d_current_day,d_current_day: string)(d_current_week,d_current_week: string)(d_current_month,d_current_month: string)(d_current_quarter,d_current_quarter: string)(d_current_year,d_current_year: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,575 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,575 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,575 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,576 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_3
2015-04-07 18:20:27,576 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:27,577 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for item TS[99]
2015-04-07 18:20:27,577 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4 row schema: item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,578 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,578 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_item_sk) i_item_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL item) i_current_price) i_current_price))
2015-04-07 18:20:27,578 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = item{(i_item_sk,i_item_sk: int)(i_item_id,i_item_id: string)(i_rec_start_date,i_rec_start_date: string)(i_rec_end_date,i_rec_end_date: string)(i_item_desc,i_item_desc: string)(i_current_price,i_current_price: float)(i_wholesale_cost,i_wholesale_cost: float)(i_brand_id,i_brand_id: int)(i_brand,i_brand: string)(i_class_id,i_class_id: int)(i_class,i_class: string)(i_category_id,i_category_id: int)(i_category,i_category: string)(i_manufact_id,i_manufact_id: int)(i_manufact,i_manufact: string)(i_size,i_size: string)(i_formulation,i_formulation: string)(i_color,i_color: string)(i_units,i_units: string)(i_container,i_container: string)(i_manager_id,i_manager_id: int)(i_product_name,i_product_name: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,579 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,579 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,579 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,579 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_4
2015-04-07 18:20:27,579 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:27,580 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genTablePlan(9456)) - Created Table Plan for promotion TS[102]
2015-04-07 18:20:27,581 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFilterPlan(2815)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5 row schema: promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,581 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} after GB promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)}
2015-04-07 18:20:27,581 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_promo_sk) p_promo_sk) (TOK_SELEXPR (. (TOK_TABLE_OR_COL promotion) p_channel_tv) p_channel_tv))
2015-04-07 18:20:27,581 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = promotion{(p_promo_sk,p_promo_sk: int)(p_promo_id,p_promo_id: string)(p_start_date_sk,p_start_date_sk: int)(p_end_date_sk,p_end_date_sk: int)(p_item_sk,p_item_sk: int)(p_cost,p_cost: float)(p_response_target,p_response_target: int)(p_promo_name,p_promo_name: string)(p_channel_dmail,p_channel_dmail: string)(p_channel_email,p_channel_email: string)(p_channel_catalog,p_channel_catalog: string)(p_channel_tv,p_channel_tv: string)(p_channel_radio,p_channel_radio: string)(p_channel_press,p_channel_press: string)(p_channel_event,p_channel_event: string)(p_channel_demo,p_channel_demo: string)(p_channel_details,p_channel_details: string)(p_purpose,p_purpose: string)(p_discount_active,p_discount_active: string)(block__offset__inside__file,BLOCK__OFFSET__INSIDE__FILE: bigint)(input__file__name,INPUT__FILE__NAME: string)(row__id,ROW__ID: struct)} starRr = null
2015-04-07 18:20:27,582 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,582 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,583 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,583 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0:$hdt$_5
2015-04-07 18:20:27,588 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)}
2015-04-07 18:20:27,588 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_2{(web_site_sk,_col0: int)(web_site_id,_col1: string)}
2015-04-07 18:20:27,590 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)}
2015-04-07 18:20:27,590 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_3{(d_date_sk,_col0: int)(d_date,_col1: string)}
2015-04-07 18:20:27,592 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_3{(d_date_sk,_col13: int)(d_date,_col14: string)} $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)}
2015-04-07 18:20:27,593 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_4{(i_item_sk,_col0: int)(i_current_price,_col1: float)}
2015-04-07 18:20:27,594 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(d_date_sk,_col13: int)(d_date,_col14: string)} $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)}
2015-04-07 18:20:27,595 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genNotNullFilterForJoinSourcePlan(2886)) - Created Filter Plan for $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0 row schema: $hdt$_5{(p_promo_sk,_col0: int)(p_channel_tv,_col1: string)}
2015-04-07 18:20:27,595 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(d_date_sk,_col13: int)(d_date,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)} after GB $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(d_date_sk,_col13: int)(d_date,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)}
2015-04-07 18:20:27,596 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_2) web_site_id) $f0) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) ws_ext_sales_price) $f1) (TOK_SELEXPR (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) wr_return_amt) 0) $f2) (TOK_SELEXPR (- (. (TOK_TABLE_OR_COL $hdt$_0) ws_net_profit) (TOK_FUNCTION coalesce (. (TOK_TABLE_OR_COL $hdt$_1) wr_net_loss) 0)) $f3))
2015-04-07 18:20:27,596 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = $hdt$_4{(i_item_sk,_col15: int)(i_current_price,_col16: float)} $hdt$_3{(d_date_sk,_col13: int)(d_date,_col14: string)} $hdt$_5{(p_promo_sk,_col17: int)(p_channel_tv,_col18: string)} $hdt$_0{(ws_sold_date_sk,_col0: int)(ws_item_sk,_col1: int)(ws_web_site_sk,_col2: int)(ws_promo_sk,_col3: int)(ws_order_number,_col4: int)(ws_ext_sales_price,_col5: float)(ws_net_profit,_col6: float)} $hdt$_2{(web_site_sk,_col11: int)(web_site_id,_col12: string)} $hdt$_1{(wr_item_sk,_col7: int)(wr_order_number,_col8: int)(wr_return_amt,_col9: float)(wr_net_loss,_col10: float)} starRr = null
2015-04-07 18:20:27,598 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,598 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,598 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0
2015-04-07 18:20:27,598 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2:$hdt$_0
2015-04-07 18:20:27,599 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,599 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,600 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,600 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)} after GB {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)}
2015-04-07 18:20:27,601 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (TOK_FUNCTION (TOK_STRING 2147483647) 'web channel') channel) (TOK_SELEXPR (TOK_FUNCTION concat 'web_site' (. (TOK_TABLE_OR_COL $hdt$_0) $f0)) id) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f1)) sales) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f2)) returns) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) $f3)) profit))
2015-04-07 18:20:27,601 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = {((. (tok_table_or_col $hdt$_0) $f0),_col0: string)((tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col1: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col2: double)((tok_function sum (. (tok_table_or_col $hdt$_0) $f3)),_col3: double)} $hdt$_0{($f0,_col0: string)} starRr = $hdt$_0{($f0,_col0: string)($f1,_col1: float)($f2,_col2: float)($f3,_col3: float)}
2015-04-07 18:20:27,602 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,602 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,602 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2
2015-04-07 18:20:27,603 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0-subquery2:$hdt$_0-subquery2
2015-04-07 18:20:27,603 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} after GB $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,603 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) channel) channel) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) id) id) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) sales) sales) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) returns) returns) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) profit) profit))
2015-04-07 18:20:27,603 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} starRr = null
2015-04-07 18:20:27,605 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,605 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,605 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block $hdt$_0
2015-04-07 18:20:27,605 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block $hdt$_0
2015-04-07 18:20:27,609 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,610 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,610 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getGenericUDAFResolver(941)) - Looking up GenericUDAF: sum
2015-04-07 18:20:27,611 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8813)) - RR before GB $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} after GB null{(grouping__id,_col2: string)} {((. (tok_table_or_col $hdt$_0) channel),_col0: string)((. (tok_table_or_col $hdt$_0) id),_col1: string)((tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col3: double)((tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col4: double)((tok_function sum (. (tok_table_or_col $hdt$_0) profit)),_col5: double)} $hdt$_0{(channel,_col0: string)(id,_col1: string)}
2015-04-07 18:20:27,611 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3606)) - tree: (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) channel) channel) (TOK_SELEXPR (. (TOK_TABLE_OR_COL $hdt$_0) id) id) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) sales)) sales) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) returns)) returns) (TOK_SELEXPR (TOK_FUNCTION sum (. (TOK_TABLE_OR_COL $hdt$_0) profit)) profit))
2015-04-07 18:20:27,612 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3716)) - genSelectPlan: input = null{(grouping__id,_col2: string)} {((. (tok_table_or_col $hdt$_0) channel),_col0: string)((. (tok_table_or_col $hdt$_0) id),_col1: string)((tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col3: double)((tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col4: double)((tok_function sum (. (tok_table_or_col $hdt$_0) profit)),_col5: double)} $hdt$_0{(channel,_col0: string)(id,_col1: string)} starRr = $hdt$_0{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)}
2015-04-07 18:20:27,612 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3864)) - Created Select Plan row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} $hdt$_0{(channel,_col0: string)(id,_col1: string)}
2015-04-07 18:20:27,612 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genSelectPlan(3595)) - Created Select Plan for clause: insclause-0
2015-04-07 18:20:27,613 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genLimitPlan(6838)) - Created LimitOperator Plan for clause: insclause-0 row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} $hdt$_0{(channel,_col0: string)(id,_col1: string)}
2015-04-07 18:20:27,615 DEBUG [main]: ql.Context (Context.java:getStagingDir(230)) - Created staging dir = hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1/-mr-10001/.hive-staging_hive_2015-04-07_18-20-20_902_5101895426048198546-1 for path = hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1/-mr-10001
2015-04-07 18:20:27,768 DEBUG [main]: lazy.LazySimpleSerDe (LazySimpleSerDe.java:initialize(135)) - org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe initialized with: columnNames=[_col0, _col1, _col2, _col3, _col4] columnTypes=[string, string, double, double, double] separator=[[B@2640558f] nullstring=\N lastColumnTakesRest=false timestampFormats=null
2015-04-07 18:20:27,770 DEBUG [main]: lazy.LazySimpleSerDe (LazySimpleSerDe.java:initialize(135)) - org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe initialized with: columnNames=[_col0, _col1, _col2, _col3, _col4] columnTypes=[string, string, double, double, double] separator=[[B@7d552fdd] nullstring=\N lastColumnTakesRest=false timestampFormats=null
2015-04-07 18:20:27,774 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFileSinkPlan(6595)) - Set stats collection dir : hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1/-mr-10001/.hive-staging_hive_2015-04-07_18-20-20_902_5101895426048198546-1/-ext-10003
2015-04-07 18:20:27,777 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genFileSinkPlan(6619)) - Created FileSink Plan for clause: insclause-0dest_path: hdfs://cn105-10.l42scl.hortonworks.com:8020/tmp/hive/mmokhtar/10249729-66c5-448f-b3b1-876ff866c894/hive_2015-04-07_18-20-20_902_5101895426048198546-1/-mr-10001 row schema: null{(channel,_col0: string)(id,_col1: string)(sales,_col2: double)(returns,_col3: double)(profit,_col4: double)} $hdt$_0{(channel,_col0: string)(id,_col1: string)}
2015-04-07 18:20:27,777 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genBodyPlan(8827)) - Created Body Plan for Query Block null
2015-04-07 18:20:27,777 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:genPlan(9664)) - Created Plan for Query Block null
2015-04-07 18:20:27,777 INFO [main]: parse.CalcitePlanner (CalcitePlanner.java:genOPTree(251)) - CBO Succeeded; optimized logical plan.
2015-04-07 18:20:27,781 DEBUG [main]: parse.CalcitePlanner (CalcitePlanner.java:genOPTree(252)) -
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_UNIONALL
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_UNIONALL
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_LEFTOUTERJOIN
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
store_sales
store_sales
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_sold_date_sk
ss_sold_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_item_sk
ss_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_store_sk
ss_store_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_promo_sk
ss_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_ticket_number
ss_ticket_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_ext_sales_price
ss_ext_sales_price
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_sales
ss_net_profit
ss_net_profit
$hdt$_0
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
store_returns
store_returns
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_returns
sr_item_sk
sr_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_returns
sr_ticket_number
sr_ticket_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_returns
sr_return_amt
sr_return_amt
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store_returns
sr_net_loss
sr_net_loss
$hdt$_1
and
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_item_sk
.
TOK_TABLE_OR_COL
$hdt$_1
sr_item_sk
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_ticket_number
.
TOK_TABLE_OR_COL
$hdt$_1
sr_ticket_number
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
date_dim
date_dim
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date_sk
d_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date
d_date
TOK_WHERE
TOK_FUNCTION
between
false
.
TOK_TABLE_OR_COL
date_dim
d_date
TOK_FUNCTION
TOK_DATE
'1998-08-04'
TOK_FUNCTION
TOK_DATE
'1998-09-04'
$hdt$_2
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_sold_date_sk
.
TOK_TABLE_OR_COL
$hdt$_2
d_date_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
item
item
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_item_sk
i_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_current_price
i_current_price
TOK_WHERE
>
.
TOK_TABLE_OR_COL
item
i_current_price
50
$hdt$_3
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_item_sk
.
TOK_TABLE_OR_COL
$hdt$_3
i_item_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
promotion
promotion
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_promo_sk
p_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
p_channel_tv
TOK_WHERE
=
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
'N'
$hdt$_4
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_promo_sk
.
TOK_TABLE_OR_COL
$hdt$_4
p_promo_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
store
store
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store
s_store_sk
s_store_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
store
s_store_id
s_store_id
$hdt$_5
=
.
TOK_TABLE_OR_COL
$hdt$_0
ss_store_sk
.
TOK_TABLE_OR_COL
$hdt$_5
s_store_sk
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_5
s_store_id
$f0
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
ss_ext_sales_price
$f1
TOK_SELEXPR
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
sr_return_amt
0
$f2
TOK_SELEXPR
-
.
TOK_TABLE_OR_COL
$hdt$_0
ss_net_profit
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
sr_net_loss
0
$f3
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
TOK_FUNCTION
TOK_STRING
2147483647
'store channel'
channel
TOK_SELEXPR
TOK_FUNCTION
concat
'store'
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
id
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f1
sales
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f2
returns
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f3
profit
TOK_GROUPBY
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_LEFTOUTERJOIN
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
catalog_sales
catalog_sales
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_sold_date_sk
cs_sold_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_catalog_page_sk
cs_catalog_page_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_item_sk
cs_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_promo_sk
cs_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_order_number
cs_order_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_ext_sales_price
cs_ext_sales_price
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_sales
cs_net_profit
cs_net_profit
$hdt$_0
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
catalog_returns
catalog_returns
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_returns
cr_item_sk
cr_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_returns
cr_order_number
cr_order_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_returns
cr_return_amount
cr_return_amount
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_returns
cr_net_loss
cr_net_loss
$hdt$_1
and
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_item_sk
.
TOK_TABLE_OR_COL
$hdt$_1
cr_item_sk
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_order_number
.
TOK_TABLE_OR_COL
$hdt$_1
cr_order_number
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
date_dim
date_dim
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date_sk
d_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date
d_date
TOK_WHERE
TOK_FUNCTION
between
false
.
TOK_TABLE_OR_COL
date_dim
d_date
TOK_FUNCTION
TOK_DATE
'1998-08-04'
TOK_FUNCTION
TOK_DATE
'1998-09-04'
$hdt$_2
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_sold_date_sk
.
TOK_TABLE_OR_COL
$hdt$_2
d_date_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
catalog_page
catalog_page
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_page
cp_catalog_page_sk
cp_catalog_page_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
catalog_page
cp_catalog_page_id
cp_catalog_page_id
$hdt$_3
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_catalog_page_sk
.
TOK_TABLE_OR_COL
$hdt$_3
cp_catalog_page_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
item
item
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_item_sk
i_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_current_price
i_current_price
TOK_WHERE
>
.
TOK_TABLE_OR_COL
item
i_current_price
50
$hdt$_4
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_item_sk
.
TOK_TABLE_OR_COL
$hdt$_4
i_item_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
promotion
promotion
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_promo_sk
p_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
p_channel_tv
TOK_WHERE
=
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
'N'
$hdt$_5
=
.
TOK_TABLE_OR_COL
$hdt$_0
cs_promo_sk
.
TOK_TABLE_OR_COL
$hdt$_5
p_promo_sk
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_3
cp_catalog_page_id
$f0
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
cs_ext_sales_price
$f1
TOK_SELEXPR
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
cr_return_amount
0
$f2
TOK_SELEXPR
-
.
TOK_TABLE_OR_COL
$hdt$_0
cs_net_profit
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
cr_net_loss
0
$f3
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
TOK_FUNCTION
TOK_STRING
2147483647
'catalog channel'
channel
TOK_SELEXPR
TOK_FUNCTION
concat
'catalog_page'
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
id
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f1
sales
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f2
returns
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f3
profit
TOK_GROUPBY
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
channel
channel
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
id
id
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
sales
sales
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
returns
returns
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
profit
profit
TOK_QUERY
TOK_FROM
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_JOIN
TOK_LEFTOUTERJOIN
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
web_sales
web_sales
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_sold_date_sk
ws_sold_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_item_sk
ws_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_web_site_sk
ws_web_site_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_promo_sk
ws_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_order_number
ws_order_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_ext_sales_price
ws_ext_sales_price
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_sales
ws_net_profit
ws_net_profit
$hdt$_0
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
web_returns
web_returns
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_returns
wr_item_sk
wr_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_returns
wr_order_number
wr_order_number
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_returns
wr_return_amt
wr_return_amt
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_returns
wr_net_loss
wr_net_loss
$hdt$_1
and
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_item_sk
.
TOK_TABLE_OR_COL
$hdt$_1
wr_item_sk
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_order_number
.
TOK_TABLE_OR_COL
$hdt$_1
wr_order_number
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
web_site
web_site
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_site
web_site_sk
web_site_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
web_site
web_site_id
web_site_id
$hdt$_2
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_web_site_sk
.
TOK_TABLE_OR_COL
$hdt$_2
web_site_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
date_dim
date_dim
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date_sk
d_date_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
date_dim
d_date
d_date
TOK_WHERE
TOK_FUNCTION
between
false
.
TOK_TABLE_OR_COL
date_dim
d_date
TOK_FUNCTION
TOK_DATE
'1998-08-04'
TOK_FUNCTION
TOK_DATE
'1998-09-04'
$hdt$_3
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_sold_date_sk
.
TOK_TABLE_OR_COL
$hdt$_3
d_date_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
item
item
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_item_sk
i_item_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
item
i_current_price
i_current_price
TOK_WHERE
>
.
TOK_TABLE_OR_COL
item
i_current_price
50
$hdt$_4
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_item_sk
.
TOK_TABLE_OR_COL
$hdt$_4
i_item_sk
TOK_SUBQUERY
TOK_QUERY
TOK_FROM
TOK_TABREF
TOK_TABNAME
tpcds_bin_orc_200
promotion
promotion
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_promo_sk
p_promo_sk
TOK_SELEXPR
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
p_channel_tv
TOK_WHERE
=
.
TOK_TABLE_OR_COL
promotion
p_channel_tv
'N'
$hdt$_5
=
.
TOK_TABLE_OR_COL
$hdt$_0
ws_promo_sk
.
TOK_TABLE_OR_COL
$hdt$_5
p_promo_sk
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_2
web_site_id
$f0
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
ws_ext_sales_price
$f1
TOK_SELEXPR
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
wr_return_amt
0
$f2
TOK_SELEXPR
-
.
TOK_TABLE_OR_COL
$hdt$_0
ws_net_profit
TOK_FUNCTION
coalesce
.
TOK_TABLE_OR_COL
$hdt$_1
wr_net_loss
0
$f3
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
TOK_FUNCTION
TOK_STRING
2147483647
'web channel'
channel
TOK_SELEXPR
TOK_FUNCTION
concat
'web_site'
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
id
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f1
sales
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f2
returns
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
$f3
profit
TOK_GROUPBY
.
TOK_TABLE_OR_COL
$hdt$_0
$f0
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
channel
channel
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
id
id
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
sales
sales
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
returns
returns
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
profit
profit
$hdt$_0
TOK_INSERT
TOK_DESTINATION
TOK_DIR
TOK_TMP_FILE
TOK_SELECT
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
channel
channel
TOK_SELEXPR
.
TOK_TABLE_OR_COL
$hdt$_0
id
id
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
sales
sales
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
returns
returns
TOK_SELEXPR
TOK_FUNCTION
sum
.
TOK_TABLE_OR_COL
$hdt$_0
profit
profit
TOK_ROLLUP_GROUPBY
.
TOK_TABLE_OR_COL
$hdt$_0
channel
.
TOK_TABLE_OR_COL
$hdt$_0
id
TOK_ORDERBY
TOK_TABSORTCOLNAMEASC
TOK_TABLE_OR_COL
channel
TOK_TABSORTCOLNAMEASC
TOK_TABLE_OR_COL
id
TOK_LIMIT
100
2015-04-07 18:20:27,786 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:analyzeInternal(10052)) - Before logical optimization
TS[0]-SEL[1]-RS[15]-JOIN[17]-FIL[18]-RS[19]-JOIN[22]-FIL[23]-RS[24]-JOIN[27]-FIL[28]-RS[29]-JOIN[32]-FIL[33]-RS[34]-JOIN[37]-SEL[38]-SEL[39]-GBY[40]-RS[41]-GBY[42]-SEL[43]-UNION[88]-SEL[134]-SEL[135]-GBY[136]-RS[137]-GBY[138]-SEL[139]-RS[140]-SEL[141]-LIM[142]-FS[143]
TS[2]-SEL[3]-RS[16]-JOIN[17]
TS[4]-FIL[5]-SEL[6]-FIL[20]-RS[21]-JOIN[22]
TS[7]-FIL[8]-SEL[9]-FIL[25]-RS[26]-JOIN[27]
TS[10]-FIL[11]-SEL[12]-FIL[30]-RS[31]-JOIN[32]
TS[13]-SEL[14]-FIL[35]-RS[36]-JOIN[37]
TS[44]-SEL[45]-RS[59]-JOIN[61]-FIL[62]-RS[63]-JOIN[66]-FIL[67]-RS[68]-JOIN[71]-FIL[72]-RS[73]-JOIN[76]-FIL[77]-RS[78]-JOIN[81]-SEL[82]-SEL[83]-GBY[84]-RS[85]-GBY[86]-SEL[87]-UNION[88]
TS[46]-SEL[47]-RS[60]-JOIN[61]
TS[48]-FIL[49]-SEL[50]-FIL[64]-RS[65]-JOIN[66]
TS[51]-SEL[52]-FIL[69]-RS[70]-JOIN[71]
TS[53]-FIL[54]-SEL[55]-FIL[74]-RS[75]-JOIN[76]
TS[56]-FIL[57]-SEL[58]-FIL[79]-RS[80]-JOIN[81]
TS[90]-SEL[91]-RS[105]-JOIN[107]-FIL[108]-RS[109]-JOIN[112]-FIL[113]-RS[114]-JOIN[117]-FIL[118]-RS[119]-JOIN[122]-FIL[123]-RS[124]-JOIN[127]-SEL[128]-SEL[129]-GBY[130]-RS[131]-GBY[132]-SEL[133]-UNION[88]
TS[92]-SEL[93]-RS[106]-JOIN[107]
TS[94]-SEL[95]-FIL[110]-RS[111]-JOIN[112]
TS[96]-FIL[97]-SEL[98]-FIL[115]-RS[116]-JOIN[117]
TS[99]-FIL[100]-SEL[101]-FIL[120]-RS[121]-JOIN[122]
TS[102]-FIL[103]-SEL[104]-FIL[125]-RS[126]-JOIN[127]
2015-04-07 18:20:28,354 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[0] with rs:(ss_sold_date_sk: int|{store_sales}ss_sold_date_sk,ss_sold_time_sk: int|{store_sales}ss_sold_time_sk,ss_item_sk: int|{store_sales}ss_item_sk,ss_customer_sk: int|{store_sales}ss_customer_sk,ss_cdemo_sk: int|{store_sales}ss_cdemo_sk,ss_hdemo_sk: int|{store_sales}ss_hdemo_sk,ss_addr_sk: int|{store_sales}ss_addr_sk,ss_store_sk: int|{store_sales}ss_store_sk,ss_promo_sk: int|{store_sales}ss_promo_sk,ss_ticket_number: int|{store_sales}ss_ticket_number,ss_quantity: int|{store_sales}ss_quantity,ss_wholesale_cost: float|{store_sales}ss_wholesale_cost,ss_list_price: float|{store_sales}ss_list_price,ss_sales_price: float|{store_sales}ss_sales_price,ss_ext_discount_amt: float|{store_sales}ss_ext_discount_amt,ss_ext_sales_price: float|{store_sales}ss_ext_sales_price,ss_ext_wholesale_cost: float|{store_sales}ss_ext_wholesale_cost,ss_ext_list_price: float|{store_sales}ss_ext_list_price,ss_ext_tax: float|{store_sales}ss_ext_tax,ss_coupon_amt: float|{store_sales}ss_coupon_amt,ss_net_paid: float|{store_sales}ss_net_paid,ss_net_paid_inc_tax: float|{store_sales}ss_net_paid_inc_tax,ss_net_profit: float|{store_sales}ss_net_profit,ss_sold_date: string|{store_sales}ss_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{store_sales}input__file__name,ROW__ID: struct|{store_sales}row__id)
2015-04-07 18:20:28,354 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[0]
2015-04-07 18:20:28,354 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[2] with rs:(sr_returned_date_sk: int|{store_returns}sr_returned_date_sk,sr_return_time_sk: int|{store_returns}sr_return_time_sk,sr_item_sk: int|{store_returns}sr_item_sk,sr_customer_sk: int|{store_returns}sr_customer_sk,sr_cdemo_sk: int|{store_returns}sr_cdemo_sk,sr_hdemo_sk: int|{store_returns}sr_hdemo_sk,sr_addr_sk: int|{store_returns}sr_addr_sk,sr_store_sk: int|{store_returns}sr_store_sk,sr_reason_sk: int|{store_returns}sr_reason_sk,sr_ticket_number: int|{store_returns}sr_ticket_number,sr_return_quantity: int|{store_returns}sr_return_quantity,sr_return_amt: float|{store_returns}sr_return_amt,sr_return_tax: float|{store_returns}sr_return_tax,sr_return_amt_inc_tax: float|{store_returns}sr_return_amt_inc_tax,sr_fee: float|{store_returns}sr_fee,sr_return_ship_cost: float|{store_returns}sr_return_ship_cost,sr_refunded_cash: float|{store_returns}sr_refunded_cash,sr_reversed_charge: float|{store_returns}sr_reversed_charge,sr_store_credit: float|{store_returns}sr_store_credit,sr_net_loss: float|{store_returns}sr_net_loss,sr_returned_date: string|{store_returns}sr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{store_returns}input__file__name,ROW__ID: struct|{store_returns}row__id)
2015-04-07 18:20:28,355 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[2]
2015-04-07 18:20:28,355 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[4] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,355 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[4]
2015-04-07 18:20:28,355 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[7] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,356 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[7]
2015-04-07 18:20:28,356 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[10] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,356 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[10]
2015-04-07 18:20:28,356 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[13] with rs:(s_store_sk: int|{store}s_store_sk,s_store_id: string|{store}s_store_id,s_rec_start_date: string|{store}s_rec_start_date,s_rec_end_date: string|{store}s_rec_end_date,s_closed_date_sk: int|{store}s_closed_date_sk,s_store_name: string|{store}s_store_name,s_number_employees: int|{store}s_number_employees,s_floor_space: int|{store}s_floor_space,s_hours: string|{store}s_hours,s_manager: string|{store}s_manager,s_market_id: int|{store}s_market_id,s_geography_class: string|{store}s_geography_class,s_market_desc: string|{store}s_market_desc,s_market_manager: string|{store}s_market_manager,s_division_id: int|{store}s_division_id,s_division_name: string|{store}s_division_name,s_company_id: int|{store}s_company_id,s_company_name: string|{store}s_company_name,s_street_number: string|{store}s_street_number,s_street_name: string|{store}s_street_name,s_street_type: string|{store}s_street_type,s_suite_number: string|{store}s_suite_number,s_city: string|{store}s_city,s_county: string|{store}s_county,s_state: string|{store}s_state,s_zip: string|{store}s_zip,s_country: string|{store}s_country,s_gmt_offset: float|{store}s_gmt_offset,s_tax_precentage: float|{store}s_tax_precentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{store}block__offset__inside__file,INPUT__FILE__NAME: string|{store}input__file__name,ROW__ID: struct|{store}row__id)
2015-04-07 18:20:28,356 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[13]
2015-04-07 18:20:28,357 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[44] with rs:(cs_sold_date_sk: int|{catalog_sales}cs_sold_date_sk,cs_sold_time_sk: int|{catalog_sales}cs_sold_time_sk,cs_ship_date_sk: int|{catalog_sales}cs_ship_date_sk,cs_bill_customer_sk: int|{catalog_sales}cs_bill_customer_sk,cs_bill_cdemo_sk: int|{catalog_sales}cs_bill_cdemo_sk,cs_bill_hdemo_sk: int|{catalog_sales}cs_bill_hdemo_sk,cs_bill_addr_sk: int|{catalog_sales}cs_bill_addr_sk,cs_ship_customer_sk: int|{catalog_sales}cs_ship_customer_sk,cs_ship_cdemo_sk: int|{catalog_sales}cs_ship_cdemo_sk,cs_ship_hdemo_sk: int|{catalog_sales}cs_ship_hdemo_sk,cs_ship_addr_sk: int|{catalog_sales}cs_ship_addr_sk,cs_call_center_sk: int|{catalog_sales}cs_call_center_sk,cs_catalog_page_sk: int|{catalog_sales}cs_catalog_page_sk,cs_ship_mode_sk: int|{catalog_sales}cs_ship_mode_sk,cs_warehouse_sk: int|{catalog_sales}cs_warehouse_sk,cs_item_sk: int|{catalog_sales}cs_item_sk,cs_promo_sk: int|{catalog_sales}cs_promo_sk,cs_order_number: int|{catalog_sales}cs_order_number,cs_quantity: int|{catalog_sales}cs_quantity,cs_wholesale_cost: float|{catalog_sales}cs_wholesale_cost,cs_list_price: float|{catalog_sales}cs_list_price,cs_sales_price: float|{catalog_sales}cs_sales_price,cs_ext_discount_amt: float|{catalog_sales}cs_ext_discount_amt,cs_ext_sales_price: float|{catalog_sales}cs_ext_sales_price,cs_ext_wholesale_cost: float|{catalog_sales}cs_ext_wholesale_cost,cs_ext_list_price: float|{catalog_sales}cs_ext_list_price,cs_ext_tax: float|{catalog_sales}cs_ext_tax,cs_coupon_amt: float|{catalog_sales}cs_coupon_amt,cs_ext_ship_cost: float|{catalog_sales}cs_ext_ship_cost,cs_net_paid: float|{catalog_sales}cs_net_paid,cs_net_paid_inc_tax: float|{catalog_sales}cs_net_paid_inc_tax,cs_net_paid_inc_ship: float|{catalog_sales}cs_net_paid_inc_ship,cs_net_paid_inc_ship_tax: float|{catalog_sales}cs_net_paid_inc_ship_tax,cs_net_profit: float|{catalog_sales}cs_net_profit,cs_sold_date: string|{catalog_sales}cs_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_sales}input__file__name,ROW__ID: struct|{catalog_sales}row__id)
2015-04-07 18:20:28,357 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[44]
2015-04-07 18:20:28,357 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[46] with rs:(cr_returned_date_sk: int|{catalog_returns}cr_returned_date_sk,cr_returned_time_sk: int|{catalog_returns}cr_returned_time_sk,cr_item_sk: int|{catalog_returns}cr_item_sk,cr_refunded_customer_sk: int|{catalog_returns}cr_refunded_customer_sk,cr_refunded_cdemo_sk: int|{catalog_returns}cr_refunded_cdemo_sk,cr_refunded_hdemo_sk: int|{catalog_returns}cr_refunded_hdemo_sk,cr_refunded_addr_sk: int|{catalog_returns}cr_refunded_addr_sk,cr_returning_customer_sk: int|{catalog_returns}cr_returning_customer_sk,cr_returning_cdemo_sk: int|{catalog_returns}cr_returning_cdemo_sk,cr_returning_hdemo_sk: int|{catalog_returns}cr_returning_hdemo_sk,cr_returning_addr_sk: int|{catalog_returns}cr_returning_addr_sk,cr_call_center_sk: int|{catalog_returns}cr_call_center_sk,cr_catalog_page_sk: int|{catalog_returns}cr_catalog_page_sk,cr_ship_mode_sk: int|{catalog_returns}cr_ship_mode_sk,cr_warehouse_sk: int|{catalog_returns}cr_warehouse_sk,cr_reason_sk: int|{catalog_returns}cr_reason_sk,cr_order_number: int|{catalog_returns}cr_order_number,cr_return_quantity: int|{catalog_returns}cr_return_quantity,cr_return_amount: float|{catalog_returns}cr_return_amount,cr_return_tax: float|{catalog_returns}cr_return_tax,cr_return_amt_inc_tax: float|{catalog_returns}cr_return_amt_inc_tax,cr_fee: float|{catalog_returns}cr_fee,cr_return_ship_cost: float|{catalog_returns}cr_return_ship_cost,cr_refunded_cash: float|{catalog_returns}cr_refunded_cash,cr_reversed_charge: float|{catalog_returns}cr_reversed_charge,cr_store_credit: float|{catalog_returns}cr_store_credit,cr_net_loss: float|{catalog_returns}cr_net_loss,cr_returned_date: string|{catalog_returns}cr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_returns}input__file__name,ROW__ID: struct|{catalog_returns}row__id)
2015-04-07 18:20:28,357 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[46]
2015-04-07 18:20:28,357 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[48] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,358 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[48]
2015-04-07 18:20:28,358 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[51] with rs:(cp_catalog_page_sk: int|{catalog_page}cp_catalog_page_sk,cp_catalog_page_id: string|{catalog_page}cp_catalog_page_id,cp_start_date_sk: int|{catalog_page}cp_start_date_sk,cp_end_date_sk: int|{catalog_page}cp_end_date_sk,cp_department: string|{catalog_page}cp_department,cp_catalog_number: int|{catalog_page}cp_catalog_number,cp_catalog_page_number: int|{catalog_page}cp_catalog_page_number,cp_description: string|{catalog_page}cp_description,cp_type: string|{catalog_page}cp_type,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_page}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_page}input__file__name,ROW__ID: struct|{catalog_page}row__id)
2015-04-07 18:20:28,358 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[51]
2015-04-07 18:20:28,358 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[53] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,358 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[53]
2015-04-07 18:20:28,359 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[56] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,359 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[56]
2015-04-07 18:20:28,359 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[90] with rs:(ws_sold_date_sk: int|{web_sales}ws_sold_date_sk,ws_sold_time_sk: int|{web_sales}ws_sold_time_sk,ws_ship_date_sk: int|{web_sales}ws_ship_date_sk,ws_item_sk: int|{web_sales}ws_item_sk,ws_bill_customer_sk: int|{web_sales}ws_bill_customer_sk,ws_bill_cdemo_sk: int|{web_sales}ws_bill_cdemo_sk,ws_bill_hdemo_sk: int|{web_sales}ws_bill_hdemo_sk,ws_bill_addr_sk: int|{web_sales}ws_bill_addr_sk,ws_ship_customer_sk: int|{web_sales}ws_ship_customer_sk,ws_ship_cdemo_sk: int|{web_sales}ws_ship_cdemo_sk,ws_ship_hdemo_sk: int|{web_sales}ws_ship_hdemo_sk,ws_ship_addr_sk: int|{web_sales}ws_ship_addr_sk,ws_web_page_sk: int|{web_sales}ws_web_page_sk,ws_web_site_sk: int|{web_sales}ws_web_site_sk,ws_ship_mode_sk: int|{web_sales}ws_ship_mode_sk,ws_warehouse_sk: int|{web_sales}ws_warehouse_sk,ws_promo_sk: int|{web_sales}ws_promo_sk,ws_order_number: int|{web_sales}ws_order_number,ws_quantity: int|{web_sales}ws_quantity,ws_wholesale_cost: float|{web_sales}ws_wholesale_cost,ws_list_price: float|{web_sales}ws_list_price,ws_sales_price: float|{web_sales}ws_sales_price,ws_ext_discount_amt: float|{web_sales}ws_ext_discount_amt,ws_ext_sales_price: float|{web_sales}ws_ext_sales_price,ws_ext_wholesale_cost: float|{web_sales}ws_ext_wholesale_cost,ws_ext_list_price: float|{web_sales}ws_ext_list_price,ws_ext_tax: float|{web_sales}ws_ext_tax,ws_coupon_amt: float|{web_sales}ws_coupon_amt,ws_ext_ship_cost: float|{web_sales}ws_ext_ship_cost,ws_net_paid: float|{web_sales}ws_net_paid,ws_net_paid_inc_tax: float|{web_sales}ws_net_paid_inc_tax,ws_net_paid_inc_ship: float|{web_sales}ws_net_paid_inc_ship,ws_net_paid_inc_ship_tax: float|{web_sales}ws_net_paid_inc_ship_tax,ws_net_profit: float|{web_sales}ws_net_profit,ws_sold_date: string|{web_sales}ws_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{web_sales}input__file__name,ROW__ID: struct|{web_sales}row__id)
2015-04-07 18:20:28,359 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[90]
2015-04-07 18:20:28,359 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[92] with rs:(wr_returned_date_sk: int|{web_returns}wr_returned_date_sk,wr_returned_time_sk: int|{web_returns}wr_returned_time_sk,wr_item_sk: int|{web_returns}wr_item_sk,wr_refunded_customer_sk: int|{web_returns}wr_refunded_customer_sk,wr_refunded_cdemo_sk: int|{web_returns}wr_refunded_cdemo_sk,wr_refunded_hdemo_sk: int|{web_returns}wr_refunded_hdemo_sk,wr_refunded_addr_sk: int|{web_returns}wr_refunded_addr_sk,wr_returning_customer_sk: int|{web_returns}wr_returning_customer_sk,wr_returning_cdemo_sk: int|{web_returns}wr_returning_cdemo_sk,wr_returning_hdemo_sk: int|{web_returns}wr_returning_hdemo_sk,wr_returning_addr_sk: int|{web_returns}wr_returning_addr_sk,wr_web_page_sk: int|{web_returns}wr_web_page_sk,wr_reason_sk: int|{web_returns}wr_reason_sk,wr_order_number: int|{web_returns}wr_order_number,wr_return_quantity: int|{web_returns}wr_return_quantity,wr_return_amt: float|{web_returns}wr_return_amt,wr_return_tax: float|{web_returns}wr_return_tax,wr_return_amt_inc_tax: float|{web_returns}wr_return_amt_inc_tax,wr_fee: float|{web_returns}wr_fee,wr_return_ship_cost: float|{web_returns}wr_return_ship_cost,wr_refunded_cash: float|{web_returns}wr_refunded_cash,wr_reversed_charge: float|{web_returns}wr_reversed_charge,wr_account_credit: float|{web_returns}wr_account_credit,wr_net_loss: float|{web_returns}wr_net_loss,wr_returned_date: string|{web_returns}wr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{web_returns}input__file__name,ROW__ID: struct|{web_returns}row__id)
2015-04-07 18:20:28,360 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[92]
2015-04-07 18:20:28,360 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[94] with rs:(web_site_sk: int|{web_site}web_site_sk,web_site_id: string|{web_site}web_site_id,web_rec_start_date: string|{web_site}web_rec_start_date,web_rec_end_date: string|{web_site}web_rec_end_date,web_name: string|{web_site}web_name,web_open_date_sk: int|{web_site}web_open_date_sk,web_close_date_sk: int|{web_site}web_close_date_sk,web_class: string|{web_site}web_class,web_manager: string|{web_site}web_manager,web_mkt_id: int|{web_site}web_mkt_id,web_mkt_class: string|{web_site}web_mkt_class,web_mkt_desc: string|{web_site}web_mkt_desc,web_market_manager: string|{web_site}web_market_manager,web_company_id: int|{web_site}web_company_id,web_company_name: string|{web_site}web_company_name,web_street_number: string|{web_site}web_street_number,web_street_name: string|{web_site}web_street_name,web_street_type: string|{web_site}web_street_type,web_suite_number: string|{web_site}web_suite_number,web_city: string|{web_site}web_city,web_county: string|{web_site}web_county,web_state: string|{web_site}web_state,web_zip: string|{web_site}web_zip,web_country: string|{web_site}web_country,web_gmt_offset: float|{web_site}web_gmt_offset,web_tax_percentage: float|{web_site}web_tax_percentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_site}block__offset__inside__file,INPUT__FILE__NAME: string|{web_site}input__file__name,ROW__ID: struct|{web_site}row__id)
2015-04-07 18:20:28,360 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[94]
2015-04-07 18:20:28,360 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[96] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,360 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[96]
2015-04-07 18:20:28,361 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[99] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,361 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[99]
2015-04-07 18:20:28,361 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[102] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,361 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[102]
2015-04-07 18:20:28,362 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[1] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:28,362 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[1]
2015-04-07 18:20:28,362 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ss_sold_date_sk] Column[ss_item_sk] Column[ss_store_sk] Column[ss_promo_sk] Column[ss_ticket_number] Column[ss_ext_sales_price] Column[ss_net_profit])
2015-04-07 18:20:28,362 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[3] with rs:(_col0: int|{$hdt$_1}sr_item_sk,_col1: int|{$hdt$_1}sr_ticket_number,_col2: float|{$hdt$_1}sr_return_amt,_col3: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:28,362 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[3]
2015-04-07 18:20:28,363 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[sr_item_sk] Column[sr_ticket_number] Column[sr_return_amt] Column[sr_net_loss])
2015-04-07 18:20:28,363 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[5] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,363 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[5]
2015-04-07 18:20:28,363 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[5] conditions:d_date BETWEEN CAST( '1998-08-04' AS DATE) AND CAST( '1998-09-04' AS DATE)
2015-04-07 18:20:28,364 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-08-04])=1998-08-04
2015-04-07 18:20:28,364 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-08-04) -> Const date 1998-08-04
2015-04-07 18:20:28,365 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-09-04])=1998-09-04
2015-04-07 18:20:28,365 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-09-04) -> Const date 1998-09-04
2015-04-07 18:20:28,365 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[5] conditions:d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,365 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[8] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,365 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[8]
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[8] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[8] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[11] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[11]
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[11] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,366 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@2efd749b is identified as a value assignment, propagate it.
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[11] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[11]
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[14] with rs:(_col0: int|{$hdt$_5}s_store_sk,_col1: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[14]
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[s_store_sk] Column[s_store_id])
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[45] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:28,367 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[45]
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cs_sold_date_sk] Column[cs_catalog_page_sk] Column[cs_item_sk] Column[cs_promo_sk] Column[cs_order_number] Column[cs_ext_sales_price] Column[cs_net_profit])
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[47] with rs:(_col0: int|{$hdt$_1}cr_item_sk,_col1: int|{$hdt$_1}cr_order_number,_col2: float|{$hdt$_1}cr_return_amount,_col3: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[47]
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cr_item_sk] Column[cr_order_number] Column[cr_return_amount] Column[cr_net_loss])
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[49] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,368 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[49]
2015-04-07 18:20:28,369 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[49] conditions:d_date BETWEEN CAST( '1998-08-04' AS DATE) AND CAST( '1998-09-04' AS DATE)
2015-04-07 18:20:28,369 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-08-04])=1998-08-04
2015-04-07 18:20:28,369 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-08-04) -> Const date 1998-08-04
2015-04-07 18:20:28,369 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-09-04])=1998-09-04
2015-04-07 18:20:28,369 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-09-04) -> Const date 1998-09-04
2015-04-07 18:20:28,370 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[49] conditions:d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,370 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[52] with rs:(_col0: int|{$hdt$_3}cp_catalog_page_sk,_col1: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,370 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[52]
2015-04-07 18:20:28,370 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cp_catalog_page_sk] Column[cp_catalog_page_id])
2015-04-07 18:20:28,372 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[54] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,372 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[54]
2015-04-07 18:20:28,372 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[54] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,372 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[54] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[57] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[57]
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[57] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@5a1f3ec6 is identified as a value assignment, propagate it.
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[57] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[57]
2015-04-07 18:20:28,373 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[91] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[91]
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ws_sold_date_sk] Column[ws_item_sk] Column[ws_web_site_sk] Column[ws_promo_sk] Column[ws_order_number] Column[ws_ext_sales_price] Column[ws_net_profit])
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[93] with rs:(_col0: int|{$hdt$_1}wr_item_sk,_col1: int|{$hdt$_1}wr_order_number,_col2: float|{$hdt$_1}wr_return_amt,_col3: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[93]
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[wr_item_sk] Column[wr_order_number] Column[wr_return_amt] Column[wr_net_loss])
2015-04-07 18:20:28,374 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[95] with rs:(_col0: int|{$hdt$_2}web_site_sk,_col1: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[95]
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[web_site_sk] Column[web_site_id])
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[97] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[97]
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[97] conditions:d_date BETWEEN CAST( '1998-08-04' AS DATE) AND CAST( '1998-09-04' AS DATE)
2015-04-07 18:20:28,375 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-08-04])=1998-08-04
2015-04-07 18:20:28,376 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-08-04) -> Const date 1998-08-04
2015-04-07 18:20:28,376 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate([Const string 1998-09-04])=1998-09-04
2015-04-07 18:20:28,376 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFToDate(Const string 1998-09-04) -> Const date 1998-09-04
2015-04-07 18:20:28,376 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[97] conditions:d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,376 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[100] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[100]
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[100] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[100] conditions:(i_current_price > 50.0)
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[103] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[103]
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[103] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,377 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@39526763 is identified as a value assignment, propagate it.
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[103] conditions:(p_channel_tv = 'N')
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[103]
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[15] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ss_ticket_number,VALUE._col3: float|{$hdt$_0}ss_ext_sales_price,VALUE._col4: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[15]
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[16] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}sr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}sr_ticket_number,VALUE._col0: float|{$hdt$_1}sr_return_amt,VALUE._col1: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:28,378 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[16]
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[6] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[6]
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[9] with rs:(_col0: int|{$hdt$_3}i_item_sk,_col1: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[9]
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:28,379 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[12] with rs:(_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[12]
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[12]
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[p_channel_tv] -> Const string N
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:28,380 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[35] with rs:(_col0: int|{$hdt$_5}s_store_sk,_col1: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[35]
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[35] conditions:_col0 is not null
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[35] conditions:_col0 is not null
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[59] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}cs_order_number,VALUE._col3: float|{$hdt$_0}cs_ext_sales_price,VALUE._col4: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[59]
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[60] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}cr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}cr_order_number,VALUE._col0: float|{$hdt$_1}cr_return_amount,VALUE._col1: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:28,381 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[60]
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[50] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[50]
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[69] with rs:(_col0: int|{$hdt$_3}cp_catalog_page_sk,_col1: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[69]
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[69] conditions:_col0 is not null
2015-04-07 18:20:28,382 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[69] conditions:_col0 is not null
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[55] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[55]
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[58] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[58]
2015-04-07 18:20:28,383 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[58]
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[p_channel_tv] -> Const string N
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[105] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ws_order_number,VALUE._col3: float|{$hdt$_0}ws_ext_sales_price,VALUE._col4: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[105]
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[106] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}wr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}wr_order_number,VALUE._col0: float|{$hdt$_1}wr_return_amt,VALUE._col1: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[106]
2015-04-07 18:20:28,384 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[110] with rs:(_col0: int|{$hdt$_2}web_site_sk,_col1: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[110]
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[110] conditions:_col0 is not null
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[110] conditions:_col0 is not null
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[98] with rs:(_col0: int|{$hdt$_3}d_date_sk,_col1: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[98]
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:28,385 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[101] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[101]
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[104] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[104]
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[104]
2015-04-07 18:20:28,386 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[p_channel_tv] -> Const string N
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[17] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[17]
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[20] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[20]
2015-04-07 18:20:28,387 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[20] conditions:_col0 is not null
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[20] conditions:_col0 is not null
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[25] with rs:(_col0: int|{$hdt$_3}i_item_sk,_col1: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[25]
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[25] conditions:_col0 is not null
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[25] conditions:_col0 is not null
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[30] with rs:(_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,388 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator FIL[30]
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[30] conditions:_col0 is not null
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[30] conditions:_col0 is not null
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in FIL[30]
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:28,389 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[61] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[61]
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[64] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[64]
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[64] conditions:_col0 is not null
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[64] conditions:_col0 is not null
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,390 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[74] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[74]
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[74] conditions:_col0 is not null
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[74] conditions:_col0 is not null
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[79] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator FIL[79]
2015-04-07 18:20:28,391 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[79] conditions:_col0 is not null
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[79] conditions:_col0 is not null
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in FIL[79]
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[107] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[107]
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,392 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[115] with rs:(_col0: int|{$hdt$_3}d_date_sk,_col1: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[115]
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[115] conditions:_col0 is not null
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[115] conditions:_col0 is not null
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[120] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[120]
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[120] conditions:_col0 is not null
2015-04-07 18:20:28,393 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[120] conditions:_col0 is not null
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[125] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator FIL[125]
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[125] conditions:_col0 is not null
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[125] conditions:_col0 is not null
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in FIL[125]
2015-04-07 18:20:28,394 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[18] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[18]
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[18] conditions:_col0 is not null
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[18] conditions:_col0 is not null
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,395 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:28,396 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,396 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,396 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:28,396 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[_col1] -> Const string N
2015-04-07 18:20:28,396 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[19] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[19]
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[22] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[22]
2015-04-07 18:20:28,397 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[23] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[23]
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[23] conditions:_col1 is not null
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[23] conditions:_col1 is not null
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[24] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,398 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[24]
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[27] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[27]
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[28] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,399 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[28]
2015-04-07 18:20:28,400 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[28] conditions:_col3 is not null
2015-04-07 18:20:28,401 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[28] conditions:_col3 is not null
2015-04-07 18:20:28,402 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,402 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,403 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:28,403 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:28,404 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[29] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,VALUE._col2: int|{$hdt$_0}ss_store_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:28,404 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[29]
2015-04-07 18:20:28,404 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,405 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,405 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:28,406 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:28,407 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[32] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,408 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,408 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col16: string] to operator JOIN[32]
2015-04-07 18:20:28,408 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:28,409 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[VALUE._col0] -> Const string N
2015-04-07 18:20:28,410 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(945)) - expr Const string N fold from Column[VALUE._col0] is removed.
2015-04-07 18:20:28,410 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:28,410 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col16: string with constant Const string N in JOIN[32]
2015-04-07 18:20:28,411 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[33] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,411 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,412 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col16: string] to operator FIL[33]
2015-04-07 18:20:28,413 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[33] conditions:_col2 is not null
2015-04-07 18:20:28,413 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[33] conditions:_col2 is not null
2015-04-07 18:20:28,413 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col16: string with constant Const string N in FIL[33]
2015-04-07 18:20:28,414 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,414 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:28,414 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[62] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:28,415 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[62]
2015-04-07 18:20:28,415 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[62] conditions:_col0 is not null
2015-04-07 18:20:28,415 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[62] conditions:_col0 is not null
2015-04-07 18:20:28,415 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,416 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:28,416 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[63] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:28,416 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[63]
2015-04-07 18:20:28,417 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,417 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:28,417 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[66] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,417 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[66]
2015-04-07 18:20:28,418 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[67] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,418 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[67]
2015-04-07 18:20:28,418 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[67] conditions:_col1 is not null
2015-04-07 18:20:28,418 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[67] conditions:_col1 is not null
2015-04-07 18:20:28,419 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,419 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:28,419 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,419 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:28,419 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,420 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,420 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[80]
2015-04-07 18:20:28,420 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[_col1] -> Const string N
2015-04-07 18:20:28,421 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[80]
2015-04-07 18:20:28,421 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[108] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:28,421 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[108]
2015-04-07 18:20:28,421 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[108] conditions:_col2 is not null
2015-04-07 18:20:28,422 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[108] conditions:_col2 is not null
2015-04-07 18:20:28,422 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[109] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col1: int|{$hdt$_0}ws_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:28,422 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[109]
2015-04-07 18:20:28,423 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,423 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:28,423 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,423 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:28,424 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,424 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:28,424 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,424 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,425 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[126]
2015-04-07 18:20:28,425 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[_col1] -> Const string N
2015-04-07 18:20:28,425 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[126]
2015-04-07 18:20:28,425 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[34] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price,VALUE._col14: int|{$hdt$_4}p_promo_sk,VALUE._col15: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,426 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price,VALUE._col14: int|{$hdt$_4}p_promo_sk,VALUE._col15: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:28,426 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col15: string] to operator RS[34]
2015-04-07 18:20:28,426 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[_col16] -> Const string N
2015-04-07 18:20:28,426 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col15: string with constant Const string N in RS[34]
2015-04-07 18:20:28,427 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[68] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date)
2015-04-07 18:20:28,429 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[68]
2015-04-07 18:20:28,429 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[71] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,430 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[71]
2015-04-07 18:20:28,430 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[72] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,430 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[72]
2015-04-07 18:20:28,430 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[72] conditions:_col2 is not null
2015-04-07 18:20:28,431 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[72] conditions:_col2 is not null
2015-04-07 18:20:28,431 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,431 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:28,431 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[73] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:28,432 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[73]
2015-04-07 18:20:28,432 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,432 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:28,433 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[76] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,433 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[76]
2015-04-07 18:20:28,433 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[77] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,433 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[77]
2015-04-07 18:20:28,434 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[77] conditions:_col3 is not null
2015-04-07 18:20:28,434 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[77] conditions:_col3 is not null
2015-04-07 18:20:28,434 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,434 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[80]
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[80]
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[112] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[112]
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[113] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,435 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[113]
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[113] conditions:_col0 is not null
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[113] conditions:_col0 is not null
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[114] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:28,436 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[114]
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[117] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[117]
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[118] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[118]
2015-04-07 18:20:28,437 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[118] conditions:_col1 is not null
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[118] conditions:_col1 is not null
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[119] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id,VALUE._col12: int|{$hdt$_3}d_date_sk,VALUE._col13: string|{$hdt$_3}d_date)
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[119]
2015-04-07 18:20:28,438 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[122] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[122]
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[123] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[123]
2015-04-07 18:20:28,439 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[123] conditions:_col3 is not null
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[123] conditions:_col3 is not null
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[126]
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[126]
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[37] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv,_col17: int|{$hdt$_5}s_store_sk,_col18: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,440 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv,_col17: int|{$hdt$_5}s_store_sk,_col18: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:28,441 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col16: string] to operator JOIN[37]
2015-04-07 18:20:28,441 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:28,441 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[VALUE._col15] -> Const string N
2015-04-07 18:20:28,441 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(945)) - expr Const string N fold from Column[VALUE._col15] is removed.
2015-04-07 18:20:28,441 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:28,441 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col16: string with constant Const string N in JOIN[37]
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[78] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col2: int|{$hdt$_0}cs_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id,VALUE._col14: int|{$hdt$_4}i_item_sk,VALUE._col15: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[78]
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[124] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col1: int|{$hdt$_0}ws_item_sk,VALUE._col2: int|{$hdt$_0}ws_web_site_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id,VALUE._col12: int|{$hdt$_3}d_date_sk,VALUE._col13: string|{$hdt$_3}d_date,VALUE._col14: int|{$hdt$_4}i_item_sk,VALUE._col15: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[124]
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[38] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,442 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_4.p_channel_tv(_col16) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,443 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[38]
2015-04-07 18:20:28,444 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col18] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:28,444 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[81] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,445 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,445 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col18: string] to operator JOIN[81]
2015-04-07 18:20:28,445 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:28,445 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[VALUE._col0] -> Const string N
2015-04-07 18:20:28,445 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(945)) - expr Const string N fold from Column[VALUE._col0] is removed.
2015-04-07 18:20:28,446 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:28,446 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col18: string with constant Const string N in JOIN[81]
2015-04-07 18:20:28,446 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[127] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,446 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:28,446 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col18: string] to operator JOIN[127]
2015-04-07 18:20:28,446 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:28,447 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(253)) - Folding expression:Column[VALUE._col0] -> Const string N
2015-04-07 18:20:28,447 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(945)) - expr Const string N fold from Column[VALUE._col0] is removed.
2015-04-07 18:20:28,447 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:28,447 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col18: string with constant Const string N in JOIN[127]
2015-04-07 18:20:28,447 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[39] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,447 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[39]
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[82] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_5.p_channel_tv(_col18) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[82]
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col14] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:28,448 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[128] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_5.p_channel_tv(_col18) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[128]
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col12] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[40] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[40]
2015-04-07 18:20:28,449 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[83] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[83]
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[129] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[129]
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,450 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[41] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[41]
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[84] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[84]
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[130] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[130]
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[42] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,451 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[42]
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[85] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[85]
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[131] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[131]
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[43] with rs:(_col0: string|{$hdt$_0-subquery1}channel,_col1: string|{$hdt$_0-subquery1}id,_col2: double|{$hdt$_0-subquery1}sales,_col3: double|{$hdt$_0-subquery1}returns,_col4: double|{$hdt$_0-subquery1}profit)
2015-04-07 18:20:28,452 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[43]
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string store channel GenericUDFConcat(Const string store, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[86] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[86]
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[132] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[132]
2015-04-07 18:20:28,453 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[43] with rs:(_col0: string|{$hdt$_0-subquery1}channel,_col1: string|{$hdt$_0-subquery1}id,_col2: double|{$hdt$_0-subquery1}sales,_col3: double|{$hdt$_0-subquery1}returns,_col4: double|{$hdt$_0-subquery1}profit)
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[43]
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string store channel GenericUDFConcat(Const string store, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[87] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[87]
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string catalog channel GenericUDFConcat(Const string catalog_page, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,454 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[133] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[133]
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string web channel GenericUDFConcat(Const string web_site, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:UNION[88] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(124)) - Constant of op SEL_43 {}
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[134] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:28,455 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[134]
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3] Column[_col4])
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[135] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[135]
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3] Column[_col4])
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[136] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col2: string|{null}grouping__id,_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:28,456 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[136]
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[137] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) channel),KEY._col1: string|{}(. (tok_table_or_col $hdt$_0) id),KEY._col2: string|{null}grouping__id,VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[137]
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[138] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col2: string|{null}grouping__id,_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[138]
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[139] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[139]
2015-04-07 18:20:28,457 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col3] Column[_col4] Column[_col5])
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[140] with rs:(KEY.reducesinkkey0: string|{null}channel,KEY.reducesinkkey1: string|{null}id,VALUE._col0: double|{null}sales,VALUE._col1: double|{null}returns,VALUE._col2: double|{null}profit)
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[140]
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[141] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[141]
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[KEY.reducesinkkey0] Column[KEY.reducesinkkey1] Column[VALUE._col0] Column[VALUE._col1] Column[VALUE._col2])
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:LIM[142] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:28,458 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator LIM[142]
2015-04-07 18:20:28,459 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FS[143] with rs:(_col0: string|{},_col1: string|{},_col2: double|{},_col3: double|{},_col4: double|{})
2015-04-07 18:20:28,459 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FS[143]
2015-04-07 18:20:28,462 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,463 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,463 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,464 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,466 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,467 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,467 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,467 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,468 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,468 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,469 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,469 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,469 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,470 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,471 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,471 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,472 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,472 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,473 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,476 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,476 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,476 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,477 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,478 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,478 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,478 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,479 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,479 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,480 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,480 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,481 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,481 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,482 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,482 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,483 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,483 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,486 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,486 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,487 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,488 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,488 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,488 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,489 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,490 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,490 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,490 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,491 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,492 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,492 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,492 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,493 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,494 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,494 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,495 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,497 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,497 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 0 --> 1
2015-04-07 18:20:28,498 DEBUG [main]: ppd.SyntheticJoinPredicate (SyntheticJoinPredicate.java:process(155)) - Synthetic predicate: 1 --> 0
2015-04-07 18:20:28,512 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for FS(143)
2015-04-07 18:20:28,513 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(129)) - Processing for LIM(142)
2015-04-07 18:20:28,513 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(141)
2015-04-07 18:20:28,513 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(140)
2015-04-07 18:20:28,515 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(139)
2015-04-07 18:20:28,516 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(138)
2015-04-07 18:20:28,516 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(137)
2015-04-07 18:20:28,516 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(136)
2015-04-07 18:20:28,517 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(135)
2015-04-07 18:20:28,517 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(134)
2015-04-07 18:20:28,519 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for UNION(88)
2015-04-07 18:20:28,519 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(43)
2015-04-07 18:20:28,520 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(42)
2015-04-07 18:20:28,520 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(41)
2015-04-07 18:20:28,520 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(40)
2015-04-07 18:20:28,520 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(39)
2015-04-07 18:20:28,521 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(38)
2015-04-07 18:20:28,521 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(37)
2015-04-07 18:20:28,521 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(34)
2015-04-07 18:20:28,523 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(161)
2015-04-07 18:20:28,531 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,531 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,532 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(159)
2015-04-07 18:20:28,532 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,532 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,533 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,533 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,533 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(156)
2015-04-07 18:20:28,534 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,534 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,534 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,535 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,535 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,535 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(152)
2015-04-07 18:20:28,535 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,535 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,536 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,536 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,536 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,536 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,536 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(147)
2015-04-07 18:20:28,538 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,538 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,539 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,539 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,539 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,539 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,540 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,540 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(33)
2015-04-07 18:20:28,540 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,540 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,541 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,542 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(32)
2015-04-07 18:20:28,542 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[36])
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[36])
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[36])
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[36])
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[36])
2015-04-07 18:20:28,543 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(29)
2015-04-07 18:20:28,544 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,544 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,544 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,545 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,545 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,545 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,545 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,545 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(158)
2015-04-07 18:20:28,546 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,546 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,547 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,548 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(155)
2015-04-07 18:20:28,548 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,548 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,549 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,549 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,549 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,549 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,549 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,550 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,550 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,550 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,550 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(151)
2015-04-07 18:20:28,550 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,551 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,552 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,553 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,553 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(146)
2015-04-07 18:20:28,553 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,553 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,557 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(28)
2015-04-07 18:20:28,558 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,559 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,560 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,561 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,561 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,561 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,561 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,561 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(27)
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,563 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,564 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,564 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,564 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,564 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,564 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(24)
2015-04-07 18:20:28,566 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,566 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,567 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,567 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,567 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,567 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,567 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,568 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,568 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,568 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,568 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,568 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,569 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(154)
2015-04-07 18:20:28,570 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,570 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,572 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,573 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(150)
2015-04-07 18:20:28,574 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,574 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,575 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,575 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,575 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,575 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,576 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,577 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,577 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(145)
2015-04-07 18:20:28,577 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,577 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,580 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,580 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,580 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,581 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(23)
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,582 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,584 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,584 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,584 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,584 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,585 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,586 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,586 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,586 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,586 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(22)
2015-04-07 18:20:28,587 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,587 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[26])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[26])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[26])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,588 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,589 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(19)
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,591 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,592 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,593 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,593 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(149)
2015-04-07 18:20:28,593 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,594 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,595 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,596 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,597 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,597 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,597 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(144)
2015-04-07 18:20:28,597 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,597 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,601 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,602 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,602 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,602 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,602 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,602 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,603 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,603 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,603 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,603 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,603 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,604 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,604 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,604 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,604 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,605 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,605 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,605 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(18)
2015-04-07 18:20:28,605 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,606 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,608 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,608 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,609 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,609 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,609 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,609 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,609 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,610 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,610 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,610 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,610 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,610 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,611 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,612 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(17)
2015-04-07 18:20:28,613 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,613 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[21])
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[21])
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - KEY.reducesinkkey0 is not null
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[26])
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[26])
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[26])
2015-04-07 18:20:28,614 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[31])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,615 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,616 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,616 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[36])
2015-04-07 18:20:28,616 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(15)
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[21])
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,618 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[26])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[31])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,619 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,620 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,620 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,620 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[36])
2015-04-07 18:20:28,621 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(1)
2015-04-07 18:20:28,622 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_0
2015-04-07 18:20:28,622 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_sold_date_sk is not null
2015-04-07 18:20:28,622 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_sold_date_sk) IN (RS[21])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_sold_date_sk) IN (RS[21])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_item_sk is not null
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_promo_sk is not null
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,623 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_store_sk is not null
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,624 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_item_sk is not null
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,625 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(0)
2015-04-07 18:20:28,629 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : store_sales
2015-04-07 18:20:28,629 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_sold_date_sk is not null
2015-04-07 18:20:28,629 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_sold_date_sk) IN (RS[21])
2015-04-07 18:20:28,629 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_sold_date_sk) IN (RS[21])
2015-04-07 18:20:28,630 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_item_sk is not null
2015-04-07 18:20:28,630 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,630 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,630 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,631 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_promo_sk is not null
2015-04-07 18:20:28,631 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,631 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,631 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,631 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_promo_sk) IN (RS[31])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_store_sk is not null
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_store_sk) IN (RS[36])
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ss_item_sk is not null
2015-04-07 18:20:28,632 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,633 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,633 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ss_item_sk) IN (RS[26])
2015-04-07 18:20:28,634 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(16)
2015-04-07 18:20:28,634 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(148)
2015-04-07 18:20:28,635 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:28,635 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[15])
2015-04-07 18:20:28,635 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[15])
2015-04-07 18:20:28,635 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:28,636 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,636 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[26])
2015-04-07 18:20:28,636 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[26])
2015-04-07 18:20:28,636 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[26])
2015-04-07 18:20:28,636 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(3)
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_1
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[15])
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_ticket_number) IN (RS[15])
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - sr_item_sk is not null
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,637 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,638 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,638 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(2)
2015-04-07 18:20:28,638 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : store_returns
2015-04-07 18:20:28,638 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[15])
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_ticket_number) IN (RS[15])
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - sr_item_sk is not null
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (sr_item_sk) IN (RS[26])
2015-04-07 18:20:28,639 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(21)
2015-04-07 18:20:28,640 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(153)
2015-04-07 18:20:28,640 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[19])
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(20)
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,641 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[19])
2015-04-07 18:20:28,642 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(6)
2015-04-07 18:20:28,642 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_2
2015-04-07 18:20:28,642 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,642 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[19])
2015-04-07 18:20:28,642 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(5)
2015-04-07 18:20:28,643 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:28,643 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,643 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:28,643 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,644 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[19])
2015-04-07 18:20:28,644 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(4)
2015-04-07 18:20:28,644 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : date_dim
2015-04-07 18:20:28,644 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,644 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,645 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[19])
2015-04-07 18:20:28,645 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(26)
2015-04-07 18:20:28,645 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(157)
2015-04-07 18:20:28,646 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,646 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[24])
2015-04-07 18:20:28,646 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(25)
2015-04-07 18:20:28,646 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,646 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[24])
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(9)
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_3
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,647 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[24])
2015-04-07 18:20:28,648 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(8)
2015-04-07 18:20:28,648 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:28,648 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:28,648 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:28,648 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,649 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[24])
2015-04-07 18:20:28,649 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(7)
2015-04-07 18:20:28,649 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : item
2015-04-07 18:20:28,649 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:28,649 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,650 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[24])
2015-04-07 18:20:28,650 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(31)
2015-04-07 18:20:28,650 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(160)
2015-04-07 18:20:28,650 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,651 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[29])
2015-04-07 18:20:28,651 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(30)
2015-04-07 18:20:28,651 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,654 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,654 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,654 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[29])
2015-04-07 18:20:28,654 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(12)
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_4
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[29])
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(11)
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:28,655 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:28,656 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:28,656 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,656 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[29])
2015-04-07 18:20:28,657 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(10)
2015-04-07 18:20:28,657 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : promotion
2015-04-07 18:20:28,657 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:28,658 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,658 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[29])
2015-04-07 18:20:28,658 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(36)
2015-04-07 18:20:28,659 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(162)
2015-04-07 18:20:28,659 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,659 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[34])
2015-04-07 18:20:28,659 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(35)
2015-04-07 18:20:28,660 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,660 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,660 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,661 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[34])
2015-04-07 18:20:28,661 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(14)
2015-04-07 18:20:28,661 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_5
2015-04-07 18:20:28,662 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - s_store_sk is not null
2015-04-07 18:20:28,662 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (s_store_sk) IN (RS[34])
2015-04-07 18:20:28,662 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(13)
2015-04-07 18:20:28,662 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : store
2015-04-07 18:20:28,663 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - s_store_sk is not null
2015-04-07 18:20:28,663 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (s_store_sk) IN (RS[34])
2015-04-07 18:20:28,664 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(87)
2015-04-07 18:20:28,664 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(86)
2015-04-07 18:20:28,665 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(85)
2015-04-07 18:20:28,665 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(84)
2015-04-07 18:20:28,666 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(83)
2015-04-07 18:20:28,667 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(82)
2015-04-07 18:20:28,668 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(81)
2015-04-07 18:20:28,668 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(78)
2015-04-07 18:20:28,669 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(180)
2015-04-07 18:20:28,669 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,669 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,669 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(178)
2015-04-07 18:20:28,670 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,670 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,670 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,671 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,671 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(175)
2015-04-07 18:20:28,671 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,672 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,672 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,672 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,673 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,673 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(171)
2015-04-07 18:20:28,673 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,673 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,674 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,674 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,674 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,675 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,675 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(166)
2015-04-07 18:20:28,675 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,676 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,676 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,676 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,677 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,677 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,677 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,677 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(77)
2015-04-07 18:20:28,678 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,678 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,679 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,681 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(76)
2015-04-07 18:20:28,682 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,682 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,682 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,682 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,682 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,683 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,683 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,683 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(73)
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,684 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,685 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,685 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(177)
2015-04-07 18:20:28,685 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,685 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,686 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,686 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,686 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,686 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,686 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,687 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,687 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,687 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(174)
2015-04-07 18:20:28,687 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,687 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,688 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,688 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,688 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,689 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,689 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,689 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,689 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,690 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,690 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(170)
2015-04-07 18:20:28,690 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,690 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,691 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,691 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,691 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,691 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,691 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(165)
2015-04-07 18:20:28,692 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,693 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,693 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,693 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,694 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,695 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,695 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(72)
2015-04-07 18:20:28,695 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,695 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,696 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,696 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,696 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,699 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,700 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(71)
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,701 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,702 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,702 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,702 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,702 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,702 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(68)
2015-04-07 18:20:28,703 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,703 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,703 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,703 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,704 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,705 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(173)
2015-04-07 18:20:28,705 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,705 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,706 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,706 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,706 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,707 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,708 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,708 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,708 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(169)
2015-04-07 18:20:28,708 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,708 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,709 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,709 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,709 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,710 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(164)
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,711 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,712 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,712 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,713 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,714 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(67)
2015-04-07 18:20:28,715 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,715 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,718 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,719 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,720 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(66)
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[70])
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[70])
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[70])
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,721 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[75])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,722 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,723 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,723 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(63)
2015-04-07 18:20:28,724 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,724 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,724 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,724 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,724 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,725 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,726 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,726 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,726 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,726 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(168)
2015-04-07 18:20:28,727 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,727 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,728 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,729 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,730 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,730 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,730 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(163)
2015-04-07 18:20:28,730 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,730 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,731 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,731 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,732 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,733 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(62)
2015-04-07 18:20:28,734 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,734 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,737 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,737 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,737 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,738 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,739 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(61)
2015-04-07 18:20:28,741 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,742 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:28,742 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[65])
2015-04-07 18:20:28,742 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[65])
2015-04-07 18:20:28,742 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:28,742 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[70])
2015-04-07 18:20:28,743 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[70])
2015-04-07 18:20:28,743 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[70])
2015-04-07 18:20:28,743 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - KEY.reducesinkkey0 is not null
2015-04-07 18:20:28,743 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[75])
2015-04-07 18:20:28,743 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[75])
2015-04-07 18:20:28,744 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[75])
2015-04-07 18:20:28,744 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[75])
2015-04-07 18:20:28,744 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,744 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,745 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,745 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,745 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,745 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[80])
2015-04-07 18:20:28,745 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(59)
2015-04-07 18:20:28,747 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,748 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,748 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,748 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[65])
2015-04-07 18:20:28,748 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,749 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,749 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,749 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[70])
2015-04-07 18:20:28,749 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:28,749 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,750 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,750 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,750 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[75])
2015-04-07 18:20:28,750 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,750 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,751 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,751 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,751 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,751 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[80])
2015-04-07 18:20:28,752 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(45)
2015-04-07 18:20:28,755 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_0
2015-04-07 18:20:28,755 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_sold_date_sk is not null
2015-04-07 18:20:28,755 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_sold_date_sk) IN (RS[65])
2015-04-07 18:20:28,755 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_sold_date_sk) IN (RS[65])
2015-04-07 18:20:28,756 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_catalog_page_sk is not null
2015-04-07 18:20:28,756 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,756 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,756 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,756 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_item_sk is not null
2015-04-07 18:20:28,757 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,757 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,757 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,757 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,757 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_promo_sk is not null
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,758 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_item_sk is not null
2015-04-07 18:20:28,759 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,759 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,759 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,759 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,759 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(44)
2015-04-07 18:20:28,762 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : catalog_sales
2015-04-07 18:20:28,762 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_sold_date_sk is not null
2015-04-07 18:20:28,762 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_sold_date_sk) IN (RS[65])
2015-04-07 18:20:28,762 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_sold_date_sk) IN (RS[65])
2015-04-07 18:20:28,763 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_catalog_page_sk is not null
2015-04-07 18:20:28,763 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,763 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,763 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_catalog_page_sk) IN (RS[70])
2015-04-07 18:20:28,763 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_item_sk is not null
2015-04-07 18:20:28,764 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,764 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,764 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,764 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,764 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_promo_sk is not null
2015-04-07 18:20:28,765 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,765 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,765 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,765 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,765 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_promo_sk) IN (RS[80])
2015-04-07 18:20:28,766 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cs_item_sk is not null
2015-04-07 18:20:28,766 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,766 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,766 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,766 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cs_item_sk) IN (RS[75])
2015-04-07 18:20:28,767 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(60)
2015-04-07 18:20:28,768 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(167)
2015-04-07 18:20:28,771 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:28,771 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[59])
2015-04-07 18:20:28,771 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[59])
2015-04-07 18:20:28,772 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:28,772 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,772 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[75])
2015-04-07 18:20:28,772 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[75])
2015-04-07 18:20:28,773 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[75])
2015-04-07 18:20:28,773 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[75])
2015-04-07 18:20:28,773 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(47)
2015-04-07 18:20:28,774 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_1
2015-04-07 18:20:28,774 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[59])
2015-04-07 18:20:28,774 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_order_number) IN (RS[59])
2015-04-07 18:20:28,775 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cr_item_sk is not null
2015-04-07 18:20:28,775 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,775 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,775 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,776 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,776 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(46)
2015-04-07 18:20:28,777 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : catalog_returns
2015-04-07 18:20:28,777 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[59])
2015-04-07 18:20:28,777 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_order_number) IN (RS[59])
2015-04-07 18:20:28,777 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cr_item_sk is not null
2015-04-07 18:20:28,778 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,778 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,778 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,778 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cr_item_sk) IN (RS[75])
2015-04-07 18:20:28,779 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(65)
2015-04-07 18:20:28,780 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(172)
2015-04-07 18:20:28,780 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,780 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[63])
2015-04-07 18:20:28,780 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(64)
2015-04-07 18:20:28,781 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,781 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,781 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:28,782 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[63])
2015-04-07 18:20:28,782 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(50)
2015-04-07 18:20:28,782 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_2
2015-04-07 18:20:28,783 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,783 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[63])
2015-04-07 18:20:28,783 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(49)
2015-04-07 18:20:28,783 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:28,784 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,784 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:28,784 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,785 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[63])
2015-04-07 18:20:28,785 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(48)
2015-04-07 18:20:28,785 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : date_dim
2015-04-07 18:20:28,786 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:28,786 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:28,786 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[63])
2015-04-07 18:20:28,787 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(70)
2015-04-07 18:20:28,787 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(176)
2015-04-07 18:20:28,788 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,788 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[68])
2015-04-07 18:20:28,788 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(69)
2015-04-07 18:20:28,788 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,789 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,789 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:28,789 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[68])
2015-04-07 18:20:28,790 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(52)
2015-04-07 18:20:28,790 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_3
2015-04-07 18:20:28,790 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cp_catalog_page_sk is not null
2015-04-07 18:20:28,790 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cp_catalog_page_sk) IN (RS[68])
2015-04-07 18:20:28,791 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(51)
2015-04-07 18:20:28,791 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : catalog_page
2015-04-07 18:20:28,791 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - cp_catalog_page_sk is not null
2015-04-07 18:20:28,791 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (cp_catalog_page_sk) IN (RS[68])
2015-04-07 18:20:28,792 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(75)
2015-04-07 18:20:28,792 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(179)
2015-04-07 18:20:28,793 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,793 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[73])
2015-04-07 18:20:28,793 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(74)
2015-04-07 18:20:28,794 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,794 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,794 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:28,794 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[73])
2015-04-07 18:20:28,795 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(55)
2015-04-07 18:20:28,795 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_4
2015-04-07 18:20:28,795 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,795 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[73])
2015-04-07 18:20:28,796 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(54)
2015-04-07 18:20:28,796 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:28,796 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:28,797 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:28,797 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,797 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[73])
2015-04-07 18:20:28,797 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(53)
2015-04-07 18:20:28,798 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : item
2015-04-07 18:20:28,798 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:28,798 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:28,799 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[73])
2015-04-07 18:20:28,799 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(80)
2015-04-07 18:20:28,799 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(181)
2015-04-07 18:20:28,800 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,800 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[78])
2015-04-07 18:20:28,800 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(79)
2015-04-07 18:20:28,800 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,801 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:28,801 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:28,801 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[78])
2015-04-07 18:20:28,801 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(58)
2015-04-07 18:20:28,804 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_5
2015-04-07 18:20:28,804 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,804 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[78])
2015-04-07 18:20:28,805 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(57)
2015-04-07 18:20:28,805 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:28,805 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:28,806 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:28,806 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,806 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[78])
2015-04-07 18:20:28,806 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(56)
2015-04-07 18:20:28,807 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : promotion
2015-04-07 18:20:28,807 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:28,807 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:28,808 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[78])
2015-04-07 18:20:28,808 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(133)
2015-04-07 18:20:28,809 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(132)
2015-04-07 18:20:28,809 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(131)
2015-04-07 18:20:28,810 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for GBY(130)
2015-04-07 18:20:28,810 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(129)
2015-04-07 18:20:28,810 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(128)
2015-04-07 18:20:28,811 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(127)
2015-04-07 18:20:28,813 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(124)
2015-04-07 18:20:28,813 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(199)
2015-04-07 18:20:28,814 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,814 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,814 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(197)
2015-04-07 18:20:28,815 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,815 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,815 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,816 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,816 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(194)
2015-04-07 18:20:28,816 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,817 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,817 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,817 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,817 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,818 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(190)
2015-04-07 18:20:28,818 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,818 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,819 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,819 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,819 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,820 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,820 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(185)
2015-04-07 18:20:28,820 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,821 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,821 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,821 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,822 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,822 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,822 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,822 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(123)
2015-04-07 18:20:28,823 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,823 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,823 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,823 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,823 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,824 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,824 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,824 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,824 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(122)
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,825 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,826 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(119)
2015-04-07 18:20:28,828 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:28,828 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,828 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,829 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,829 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,829 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,829 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,830 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(196)
2015-04-07 18:20:28,830 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,830 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,831 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,831 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,832 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,832 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,832 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,832 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,832 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,833 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(193)
2015-04-07 18:20:28,833 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,833 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,834 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,834 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,835 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,835 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,835 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,835 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,835 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,836 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,836 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(189)
2015-04-07 18:20:28,836 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,837 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,837 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,838 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,838 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,838 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,838 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,839 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,839 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,839 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,839 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,839 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(184)
2015-04-07 18:20:28,840 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,840 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,841 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,841 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,841 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,842 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,842 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,842 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,842 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,842 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,843 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,843 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,843 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(118)
2015-04-07 18:20:28,844 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,844 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:28,845 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:28,845 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,845 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,845 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,846 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:28,846 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:28,846 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,846 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,846 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,847 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,847 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:28,847 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(117)
2015-04-07 18:20:28,848 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:28,848 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:28,849 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[121])
2015-04-07 18:20:28,849 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[121])
2015-04-07 18:20:28,849 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[121])
2015-04-07 18:20:28,849 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[121])
2015-04-07 18:20:28,849 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:28,850 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,850 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,850 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,850 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:28,850 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,013 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(114)
2015-04-07 18:20:29,014 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:29,014 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,015 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,015 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,015 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,015 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,016 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,016 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,016 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,016 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,016 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,017 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,017 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(192)
2015-04-07 18:20:29,018 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,018 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,019 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,019 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,019 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,019 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,020 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,021 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(188)
2015-04-07 18:20:29,021 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,021 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,022 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,023 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(183)
2015-04-07 18:20:29,024 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,024 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,025 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,026 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,026 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,026 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,026 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,026 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,027 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,027 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(113)
2015-04-07 18:20:29,027 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,027 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,029 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,029 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,029 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,030 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,030 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,030 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,030 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,030 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,031 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,031 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,031 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,031 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,031 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,032 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,032 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,032 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(112)
2015-04-07 18:20:29,034 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:29,034 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:29,034 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,036 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,036 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,036 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:29,036 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[121])
2015-04-07 18:20:29,036 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[121])
2015-04-07 18:20:29,037 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[121])
2015-04-07 18:20:29,037 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[121])
2015-04-07 18:20:29,037 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:29,037 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,037 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,038 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,038 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,038 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,038 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(109)
2015-04-07 18:20:29,040 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:29,040 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,040 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,040 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,040 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,041 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,041 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,041 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,041 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,041 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,042 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,042 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,042 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,042 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,042 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,043 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,044 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(187)
2015-04-07 18:20:29,044 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,044 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,045 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,046 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,046 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,046 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,046 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,046 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,047 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,048 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,048 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,048 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,048 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,048 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(182)
2015-04-07 18:20:29,049 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,049 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,049 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,050 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,051 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,052 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(108)
2015-04-07 18:20:29,052 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,052 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_0
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,053 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,054 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,055 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,055 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,055 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,055 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,055 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(457)) - Processing for JOIN(107)
2015-04-07 18:20:29,056 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of JOIN For Alias : $hdt$_0
2015-04-07 18:20:29,056 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col1 is not null
2015-04-07 18:20:29,056 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[111])
2015-04-07 18:20:29,056 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col1) IN (RS[111])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col0 is not null
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col0) IN (RS[116])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - KEY.reducesinkkey0 is not null
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[121])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[121])
2015-04-07 18:20:29,057 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[121])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (KEY.reducesinkkey0) IN (RS[121])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - VALUE._col2 is not null
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,058 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (VALUE._col2) IN (RS[126])
2015-04-07 18:20:29,060 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(105)
2015-04-07 18:20:29,061 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of RS For Alias : $hdt$_0
2015-04-07 18:20:29,061 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col2 is not null
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col2) IN (RS[111])
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[116])
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col1 is not null
2015-04-07 18:20:29,062 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[121])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col3 is not null
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,063 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,064 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col3) IN (RS[126])
2015-04-07 18:20:29,064 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(91)
2015-04-07 18:20:29,065 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_0
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_web_site_sk is not null
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_web_site_sk) IN (RS[111])
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_web_site_sk) IN (RS[111])
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_sold_date_sk is not null
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,066 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_item_sk is not null
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_promo_sk is not null
2015-04-07 18:20:29,067 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,068 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,068 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,068 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,068 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,068 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_item_sk is not null
2015-04-07 18:20:29,069 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,069 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,069 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,069 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,069 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(90)
2015-04-07 18:20:29,071 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : web_sales
2015-04-07 18:20:29,072 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_web_site_sk is not null
2015-04-07 18:20:29,072 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_web_site_sk) IN (RS[111])
2015-04-07 18:20:29,072 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_web_site_sk) IN (RS[111])
2015-04-07 18:20:29,072 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_sold_date_sk is not null
2015-04-07 18:20:29,072 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,073 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,073 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_sold_date_sk) IN (RS[116])
2015-04-07 18:20:29,073 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_item_sk is not null
2015-04-07 18:20:29,073 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,073 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,074 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,074 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,074 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_promo_sk is not null
2015-04-07 18:20:29,074 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,074 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_promo_sk) IN (RS[126])
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - ws_item_sk is not null
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,075 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,076 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,076 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (ws_item_sk) IN (RS[121])
2015-04-07 18:20:29,077 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(106)
2015-04-07 18:20:29,078 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(186)
2015-04-07 18:20:29,078 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:29,079 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[105])
2015-04-07 18:20:29,079 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col1) IN (RS[105])
2015-04-07 18:20:29,079 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_1
2015-04-07 18:20:29,080 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,080 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[121])
2015-04-07 18:20:29,080 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[121])
2015-04-07 18:20:29,080 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[121])
2015-04-07 18:20:29,080 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[121])
2015-04-07 18:20:29,081 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(93)
2015-04-07 18:20:29,081 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_1
2015-04-07 18:20:29,082 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[105])
2015-04-07 18:20:29,082 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_order_number) IN (RS[105])
2015-04-07 18:20:29,082 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - wr_item_sk is not null
2015-04-07 18:20:29,082 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,082 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,083 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,083 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,083 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(92)
2015-04-07 18:20:29,084 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : web_returns
2015-04-07 18:20:29,084 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[105])
2015-04-07 18:20:29,084 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_order_number) IN (RS[105])
2015-04-07 18:20:29,084 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - wr_item_sk is not null
2015-04-07 18:20:29,085 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,085 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,085 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,085 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (wr_item_sk) IN (RS[121])
2015-04-07 18:20:29,086 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(111)
2015-04-07 18:20:29,086 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(191)
2015-04-07 18:20:29,088 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:29,088 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[109])
2015-04-07 18:20:29,088 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(110)
2015-04-07 18:20:29,088 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:29,088 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_2
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[109])
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(95)
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_2
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - web_site_sk is not null
2015-04-07 18:20:29,089 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (web_site_sk) IN (RS[109])
2015-04-07 18:20:29,090 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(94)
2015-04-07 18:20:29,090 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : web_site
2015-04-07 18:20:29,090 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - web_site_sk is not null
2015-04-07 18:20:29,090 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (web_site_sk) IN (RS[109])
2015-04-07 18:20:29,090 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(116)
2015-04-07 18:20:29,091 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(195)
2015-04-07 18:20:29,091 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:29,091 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[114])
2015-04-07 18:20:29,091 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(115)
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_3
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[114])
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(98)
2015-04-07 18:20:29,092 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_3
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[114])
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(97)
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:29,093 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : date_dim
2015-04-07 18:20:29,094 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:29,094 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[114])
2015-04-07 18:20:29,094 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(96)
2015-04-07 18:20:29,095 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : date_dim
2015-04-07 18:20:29,095 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date BETWEEN 1998-08-04 AND 1998-09-04
2015-04-07 18:20:29,095 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - d_date_sk is not null
2015-04-07 18:20:29,095 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (d_date_sk) IN (RS[114])
2015-04-07 18:20:29,095 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(121)
2015-04-07 18:20:29,096 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(198)
2015-04-07 18:20:29,096 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:29,096 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[119])
2015-04-07 18:20:29,096 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(120)
2015-04-07 18:20:29,096 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:29,097 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,097 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_4
2015-04-07 18:20:29,097 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[119])
2015-04-07 18:20:29,097 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(101)
2015-04-07 18:20:29,098 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_4
2015-04-07 18:20:29,098 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:29,098 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[119])
2015-04-07 18:20:29,098 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(100)
2015-04-07 18:20:29,099 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:29,099 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:29,099 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : item
2015-04-07 18:20:29,099 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:29,099 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[119])
2015-04-07 18:20:29,100 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(99)
2015-04-07 18:20:29,100 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : item
2015-04-07 18:20:29,100 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_current_price > 50.0)
2015-04-07 18:20:29,100 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - i_item_sk is not null
2015-04-07 18:20:29,100 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (i_item_sk) IN (RS[119])
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for RS(126)
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(200)
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[124])
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(125)
2015-04-07 18:20:29,101 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - _col0 is not null
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : $hdt$_5
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (_col0) IN (RS[124])
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(655)) - Processing for SEL(104)
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of SEL For Alias : $hdt$_5
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:29,102 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[124])
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(402)) - Processing for FIL(103)
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of FIL For Alias : promotion
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:29,103 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[124])
2015-04-07 18:20:29,104 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:process(382)) - Processing for TS(102)
2015-04-07 18:20:29,104 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(707)) - Pushdown Predicates of TS For Alias : promotion
2015-04-07 18:20:29,104 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_channel_tv = 'N')
2015-04-07 18:20:29,104 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - p_promo_sk is not null
2015-04-07 18:20:29,104 INFO [main]: ppd.OpProcFactory (OpProcFactory.java:logExpr(710)) - (p_promo_sk) IN (RS[124])
2015-04-07 18:20:29,105 DEBUG [main]: ppd.PredicatePushDown (PredicatePushDown.java:transform(138)) - After PPD:
TS[0]-FIL[201]-SEL[1]-RS[15]-JOIN[17]-RS[19]-JOIN[22]-RS[24]-JOIN[27]-RS[29]-JOIN[32]-RS[34]-JOIN[37]-SEL[38]-SEL[39]-GBY[40]-RS[41]-GBY[42]-SEL[43]-UNION[88]-SEL[134]-SEL[135]-GBY[136]-RS[137]-GBY[138]-SEL[139]-RS[140]-SEL[141]-LIM[142]-FS[143]
TS[2]-FIL[202]-SEL[3]-RS[16]-JOIN[17]
TS[4]-FIL[203]-SEL[6]-RS[21]-JOIN[22]
TS[7]-FIL[204]-SEL[9]-RS[26]-JOIN[27]
TS[10]-FIL[205]-SEL[12]-RS[31]-JOIN[32]
TS[13]-FIL[206]-SEL[14]-RS[36]-JOIN[37]
TS[44]-FIL[207]-SEL[45]-RS[59]-JOIN[61]-RS[63]-JOIN[66]-RS[68]-JOIN[71]-RS[73]-JOIN[76]-RS[78]-JOIN[81]-SEL[82]-SEL[83]-GBY[84]-RS[85]-GBY[86]-SEL[87]-UNION[88]
TS[46]-FIL[208]-SEL[47]-RS[60]-JOIN[61]
TS[48]-FIL[209]-SEL[50]-RS[65]-JOIN[66]
TS[51]-FIL[210]-SEL[52]-RS[70]-JOIN[71]
TS[53]-FIL[211]-SEL[55]-RS[75]-JOIN[76]
TS[56]-FIL[212]-SEL[58]-RS[80]-JOIN[81]
TS[90]-FIL[213]-SEL[91]-RS[105]-JOIN[107]-RS[109]-JOIN[112]-RS[114]-JOIN[117]-RS[119]-JOIN[122]-RS[124]-JOIN[127]-SEL[128]-SEL[129]-GBY[130]-RS[131]-GBY[132]-SEL[133]-UNION[88]
TS[92]-FIL[214]-SEL[93]-RS[106]-JOIN[107]
TS[94]-FIL[215]-SEL[95]-RS[111]-JOIN[112]
TS[96]-FIL[216]-SEL[98]-RS[116]-JOIN[117]
TS[99]-FIL[217]-SEL[101]-RS[121]-JOIN[122]
TS[102]-FIL[218]-SEL[104]-RS[126]-JOIN[127]
2015-04-07 18:20:29,105 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[0] with rs:(ss_sold_date_sk: int|{store_sales}ss_sold_date_sk,ss_sold_time_sk: int|{store_sales}ss_sold_time_sk,ss_item_sk: int|{store_sales}ss_item_sk,ss_customer_sk: int|{store_sales}ss_customer_sk,ss_cdemo_sk: int|{store_sales}ss_cdemo_sk,ss_hdemo_sk: int|{store_sales}ss_hdemo_sk,ss_addr_sk: int|{store_sales}ss_addr_sk,ss_store_sk: int|{store_sales}ss_store_sk,ss_promo_sk: int|{store_sales}ss_promo_sk,ss_ticket_number: int|{store_sales}ss_ticket_number,ss_quantity: int|{store_sales}ss_quantity,ss_wholesale_cost: float|{store_sales}ss_wholesale_cost,ss_list_price: float|{store_sales}ss_list_price,ss_sales_price: float|{store_sales}ss_sales_price,ss_ext_discount_amt: float|{store_sales}ss_ext_discount_amt,ss_ext_sales_price: float|{store_sales}ss_ext_sales_price,ss_ext_wholesale_cost: float|{store_sales}ss_ext_wholesale_cost,ss_ext_list_price: float|{store_sales}ss_ext_list_price,ss_ext_tax: float|{store_sales}ss_ext_tax,ss_coupon_amt: float|{store_sales}ss_coupon_amt,ss_net_paid: float|{store_sales}ss_net_paid,ss_net_paid_inc_tax: float|{store_sales}ss_net_paid_inc_tax,ss_net_profit: float|{store_sales}ss_net_profit,ss_sold_date: string|{store_sales}ss_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{store_sales}input__file__name,ROW__ID: struct|{store_sales}row__id)
2015-04-07 18:20:29,105 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[0]
2015-04-07 18:20:29,106 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[2] with rs:(sr_returned_date_sk: int|{store_returns}sr_returned_date_sk,sr_return_time_sk: int|{store_returns}sr_return_time_sk,sr_item_sk: int|{store_returns}sr_item_sk,sr_customer_sk: int|{store_returns}sr_customer_sk,sr_cdemo_sk: int|{store_returns}sr_cdemo_sk,sr_hdemo_sk: int|{store_returns}sr_hdemo_sk,sr_addr_sk: int|{store_returns}sr_addr_sk,sr_store_sk: int|{store_returns}sr_store_sk,sr_reason_sk: int|{store_returns}sr_reason_sk,sr_ticket_number: int|{store_returns}sr_ticket_number,sr_return_quantity: int|{store_returns}sr_return_quantity,sr_return_amt: float|{store_returns}sr_return_amt,sr_return_tax: float|{store_returns}sr_return_tax,sr_return_amt_inc_tax: float|{store_returns}sr_return_amt_inc_tax,sr_fee: float|{store_returns}sr_fee,sr_return_ship_cost: float|{store_returns}sr_return_ship_cost,sr_refunded_cash: float|{store_returns}sr_refunded_cash,sr_reversed_charge: float|{store_returns}sr_reversed_charge,sr_store_credit: float|{store_returns}sr_store_credit,sr_net_loss: float|{store_returns}sr_net_loss,sr_returned_date: string|{store_returns}sr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{store_returns}input__file__name,ROW__ID: struct|{store_returns}row__id)
2015-04-07 18:20:29,106 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[2]
2015-04-07 18:20:29,106 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[4] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,106 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[4]
2015-04-07 18:20:29,106 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[7] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,107 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[7]
2015-04-07 18:20:29,107 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[10] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,107 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[10]
2015-04-07 18:20:29,109 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[13] with rs:(s_store_sk: int|{store}s_store_sk,s_store_id: string|{store}s_store_id,s_rec_start_date: string|{store}s_rec_start_date,s_rec_end_date: string|{store}s_rec_end_date,s_closed_date_sk: int|{store}s_closed_date_sk,s_store_name: string|{store}s_store_name,s_number_employees: int|{store}s_number_employees,s_floor_space: int|{store}s_floor_space,s_hours: string|{store}s_hours,s_manager: string|{store}s_manager,s_market_id: int|{store}s_market_id,s_geography_class: string|{store}s_geography_class,s_market_desc: string|{store}s_market_desc,s_market_manager: string|{store}s_market_manager,s_division_id: int|{store}s_division_id,s_division_name: string|{store}s_division_name,s_company_id: int|{store}s_company_id,s_company_name: string|{store}s_company_name,s_street_number: string|{store}s_street_number,s_street_name: string|{store}s_street_name,s_street_type: string|{store}s_street_type,s_suite_number: string|{store}s_suite_number,s_city: string|{store}s_city,s_county: string|{store}s_county,s_state: string|{store}s_state,s_zip: string|{store}s_zip,s_country: string|{store}s_country,s_gmt_offset: float|{store}s_gmt_offset,s_tax_precentage: float|{store}s_tax_precentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{store}block__offset__inside__file,INPUT__FILE__NAME: string|{store}input__file__name,ROW__ID: struct|{store}row__id)
2015-04-07 18:20:29,109 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[13]
2015-04-07 18:20:29,110 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[44] with rs:(cs_sold_date_sk: int|{catalog_sales}cs_sold_date_sk,cs_sold_time_sk: int|{catalog_sales}cs_sold_time_sk,cs_ship_date_sk: int|{catalog_sales}cs_ship_date_sk,cs_bill_customer_sk: int|{catalog_sales}cs_bill_customer_sk,cs_bill_cdemo_sk: int|{catalog_sales}cs_bill_cdemo_sk,cs_bill_hdemo_sk: int|{catalog_sales}cs_bill_hdemo_sk,cs_bill_addr_sk: int|{catalog_sales}cs_bill_addr_sk,cs_ship_customer_sk: int|{catalog_sales}cs_ship_customer_sk,cs_ship_cdemo_sk: int|{catalog_sales}cs_ship_cdemo_sk,cs_ship_hdemo_sk: int|{catalog_sales}cs_ship_hdemo_sk,cs_ship_addr_sk: int|{catalog_sales}cs_ship_addr_sk,cs_call_center_sk: int|{catalog_sales}cs_call_center_sk,cs_catalog_page_sk: int|{catalog_sales}cs_catalog_page_sk,cs_ship_mode_sk: int|{catalog_sales}cs_ship_mode_sk,cs_warehouse_sk: int|{catalog_sales}cs_warehouse_sk,cs_item_sk: int|{catalog_sales}cs_item_sk,cs_promo_sk: int|{catalog_sales}cs_promo_sk,cs_order_number: int|{catalog_sales}cs_order_number,cs_quantity: int|{catalog_sales}cs_quantity,cs_wholesale_cost: float|{catalog_sales}cs_wholesale_cost,cs_list_price: float|{catalog_sales}cs_list_price,cs_sales_price: float|{catalog_sales}cs_sales_price,cs_ext_discount_amt: float|{catalog_sales}cs_ext_discount_amt,cs_ext_sales_price: float|{catalog_sales}cs_ext_sales_price,cs_ext_wholesale_cost: float|{catalog_sales}cs_ext_wholesale_cost,cs_ext_list_price: float|{catalog_sales}cs_ext_list_price,cs_ext_tax: float|{catalog_sales}cs_ext_tax,cs_coupon_amt: float|{catalog_sales}cs_coupon_amt,cs_ext_ship_cost: float|{catalog_sales}cs_ext_ship_cost,cs_net_paid: float|{catalog_sales}cs_net_paid,cs_net_paid_inc_tax: float|{catalog_sales}cs_net_paid_inc_tax,cs_net_paid_inc_ship: float|{catalog_sales}cs_net_paid_inc_ship,cs_net_paid_inc_ship_tax: float|{catalog_sales}cs_net_paid_inc_ship_tax,cs_net_profit: float|{catalog_sales}cs_net_profit,cs_sold_date: string|{catalog_sales}cs_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_sales}input__file__name,ROW__ID: struct|{catalog_sales}row__id)
2015-04-07 18:20:29,110 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[44]
2015-04-07 18:20:29,110 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[46] with rs:(cr_returned_date_sk: int|{catalog_returns}cr_returned_date_sk,cr_returned_time_sk: int|{catalog_returns}cr_returned_time_sk,cr_item_sk: int|{catalog_returns}cr_item_sk,cr_refunded_customer_sk: int|{catalog_returns}cr_refunded_customer_sk,cr_refunded_cdemo_sk: int|{catalog_returns}cr_refunded_cdemo_sk,cr_refunded_hdemo_sk: int|{catalog_returns}cr_refunded_hdemo_sk,cr_refunded_addr_sk: int|{catalog_returns}cr_refunded_addr_sk,cr_returning_customer_sk: int|{catalog_returns}cr_returning_customer_sk,cr_returning_cdemo_sk: int|{catalog_returns}cr_returning_cdemo_sk,cr_returning_hdemo_sk: int|{catalog_returns}cr_returning_hdemo_sk,cr_returning_addr_sk: int|{catalog_returns}cr_returning_addr_sk,cr_call_center_sk: int|{catalog_returns}cr_call_center_sk,cr_catalog_page_sk: int|{catalog_returns}cr_catalog_page_sk,cr_ship_mode_sk: int|{catalog_returns}cr_ship_mode_sk,cr_warehouse_sk: int|{catalog_returns}cr_warehouse_sk,cr_reason_sk: int|{catalog_returns}cr_reason_sk,cr_order_number: int|{catalog_returns}cr_order_number,cr_return_quantity: int|{catalog_returns}cr_return_quantity,cr_return_amount: float|{catalog_returns}cr_return_amount,cr_return_tax: float|{catalog_returns}cr_return_tax,cr_return_amt_inc_tax: float|{catalog_returns}cr_return_amt_inc_tax,cr_fee: float|{catalog_returns}cr_fee,cr_return_ship_cost: float|{catalog_returns}cr_return_ship_cost,cr_refunded_cash: float|{catalog_returns}cr_refunded_cash,cr_reversed_charge: float|{catalog_returns}cr_reversed_charge,cr_store_credit: float|{catalog_returns}cr_store_credit,cr_net_loss: float|{catalog_returns}cr_net_loss,cr_returned_date: string|{catalog_returns}cr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_returns}input__file__name,ROW__ID: struct|{catalog_returns}row__id)
2015-04-07 18:20:29,110 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[46]
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[48] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[48]
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[51] with rs:(cp_catalog_page_sk: int|{catalog_page}cp_catalog_page_sk,cp_catalog_page_id: string|{catalog_page}cp_catalog_page_id,cp_start_date_sk: int|{catalog_page}cp_start_date_sk,cp_end_date_sk: int|{catalog_page}cp_end_date_sk,cp_department: string|{catalog_page}cp_department,cp_catalog_number: int|{catalog_page}cp_catalog_number,cp_catalog_page_number: int|{catalog_page}cp_catalog_page_number,cp_description: string|{catalog_page}cp_description,cp_type: string|{catalog_page}cp_type,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_page}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_page}input__file__name,ROW__ID: struct|{catalog_page}row__id)
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[51]
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[53] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,111 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[53]
2015-04-07 18:20:29,112 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[56] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,112 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[56]
2015-04-07 18:20:29,112 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[90] with rs:(ws_sold_date_sk: int|{web_sales}ws_sold_date_sk,ws_sold_time_sk: int|{web_sales}ws_sold_time_sk,ws_ship_date_sk: int|{web_sales}ws_ship_date_sk,ws_item_sk: int|{web_sales}ws_item_sk,ws_bill_customer_sk: int|{web_sales}ws_bill_customer_sk,ws_bill_cdemo_sk: int|{web_sales}ws_bill_cdemo_sk,ws_bill_hdemo_sk: int|{web_sales}ws_bill_hdemo_sk,ws_bill_addr_sk: int|{web_sales}ws_bill_addr_sk,ws_ship_customer_sk: int|{web_sales}ws_ship_customer_sk,ws_ship_cdemo_sk: int|{web_sales}ws_ship_cdemo_sk,ws_ship_hdemo_sk: int|{web_sales}ws_ship_hdemo_sk,ws_ship_addr_sk: int|{web_sales}ws_ship_addr_sk,ws_web_page_sk: int|{web_sales}ws_web_page_sk,ws_web_site_sk: int|{web_sales}ws_web_site_sk,ws_ship_mode_sk: int|{web_sales}ws_ship_mode_sk,ws_warehouse_sk: int|{web_sales}ws_warehouse_sk,ws_promo_sk: int|{web_sales}ws_promo_sk,ws_order_number: int|{web_sales}ws_order_number,ws_quantity: int|{web_sales}ws_quantity,ws_wholesale_cost: float|{web_sales}ws_wholesale_cost,ws_list_price: float|{web_sales}ws_list_price,ws_sales_price: float|{web_sales}ws_sales_price,ws_ext_discount_amt: float|{web_sales}ws_ext_discount_amt,ws_ext_sales_price: float|{web_sales}ws_ext_sales_price,ws_ext_wholesale_cost: float|{web_sales}ws_ext_wholesale_cost,ws_ext_list_price: float|{web_sales}ws_ext_list_price,ws_ext_tax: float|{web_sales}ws_ext_tax,ws_coupon_amt: float|{web_sales}ws_coupon_amt,ws_ext_ship_cost: float|{web_sales}ws_ext_ship_cost,ws_net_paid: float|{web_sales}ws_net_paid,ws_net_paid_inc_tax: float|{web_sales}ws_net_paid_inc_tax,ws_net_paid_inc_ship: float|{web_sales}ws_net_paid_inc_ship,ws_net_paid_inc_ship_tax: float|{web_sales}ws_net_paid_inc_ship_tax,ws_net_profit: float|{web_sales}ws_net_profit,ws_sold_date: string|{web_sales}ws_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{web_sales}input__file__name,ROW__ID: struct|{web_sales}row__id)
2015-04-07 18:20:29,112 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[90]
2015-04-07 18:20:29,113 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[92] with rs:(wr_returned_date_sk: int|{web_returns}wr_returned_date_sk,wr_returned_time_sk: int|{web_returns}wr_returned_time_sk,wr_item_sk: int|{web_returns}wr_item_sk,wr_refunded_customer_sk: int|{web_returns}wr_refunded_customer_sk,wr_refunded_cdemo_sk: int|{web_returns}wr_refunded_cdemo_sk,wr_refunded_hdemo_sk: int|{web_returns}wr_refunded_hdemo_sk,wr_refunded_addr_sk: int|{web_returns}wr_refunded_addr_sk,wr_returning_customer_sk: int|{web_returns}wr_returning_customer_sk,wr_returning_cdemo_sk: int|{web_returns}wr_returning_cdemo_sk,wr_returning_hdemo_sk: int|{web_returns}wr_returning_hdemo_sk,wr_returning_addr_sk: int|{web_returns}wr_returning_addr_sk,wr_web_page_sk: int|{web_returns}wr_web_page_sk,wr_reason_sk: int|{web_returns}wr_reason_sk,wr_order_number: int|{web_returns}wr_order_number,wr_return_quantity: int|{web_returns}wr_return_quantity,wr_return_amt: float|{web_returns}wr_return_amt,wr_return_tax: float|{web_returns}wr_return_tax,wr_return_amt_inc_tax: float|{web_returns}wr_return_amt_inc_tax,wr_fee: float|{web_returns}wr_fee,wr_return_ship_cost: float|{web_returns}wr_return_ship_cost,wr_refunded_cash: float|{web_returns}wr_refunded_cash,wr_reversed_charge: float|{web_returns}wr_reversed_charge,wr_account_credit: float|{web_returns}wr_account_credit,wr_net_loss: float|{web_returns}wr_net_loss,wr_returned_date: string|{web_returns}wr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{web_returns}input__file__name,ROW__ID: struct|{web_returns}row__id)
2015-04-07 18:20:29,113 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[92]
2015-04-07 18:20:29,113 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[94] with rs:(web_site_sk: int|{web_site}web_site_sk,web_site_id: string|{web_site}web_site_id,web_rec_start_date: string|{web_site}web_rec_start_date,web_rec_end_date: string|{web_site}web_rec_end_date,web_name: string|{web_site}web_name,web_open_date_sk: int|{web_site}web_open_date_sk,web_close_date_sk: int|{web_site}web_close_date_sk,web_class: string|{web_site}web_class,web_manager: string|{web_site}web_manager,web_mkt_id: int|{web_site}web_mkt_id,web_mkt_class: string|{web_site}web_mkt_class,web_mkt_desc: string|{web_site}web_mkt_desc,web_market_manager: string|{web_site}web_market_manager,web_company_id: int|{web_site}web_company_id,web_company_name: string|{web_site}web_company_name,web_street_number: string|{web_site}web_street_number,web_street_name: string|{web_site}web_street_name,web_street_type: string|{web_site}web_street_type,web_suite_number: string|{web_site}web_suite_number,web_city: string|{web_site}web_city,web_county: string|{web_site}web_county,web_state: string|{web_site}web_state,web_zip: string|{web_site}web_zip,web_country: string|{web_site}web_country,web_gmt_offset: float|{web_site}web_gmt_offset,web_tax_percentage: float|{web_site}web_tax_percentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_site}block__offset__inside__file,INPUT__FILE__NAME: string|{web_site}input__file__name,ROW__ID: struct|{web_site}row__id)
2015-04-07 18:20:29,113 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[94]
2015-04-07 18:20:29,113 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[96] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,114 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[96]
2015-04-07 18:20:29,114 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[99] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,114 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[99]
2015-04-07 18:20:29,114 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[102] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,114 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[102]
2015-04-07 18:20:29,115 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[201] with rs:(ss_sold_date_sk: int|{store_sales}ss_sold_date_sk,ss_sold_time_sk: int|{store_sales}ss_sold_time_sk,ss_item_sk: int|{store_sales}ss_item_sk,ss_customer_sk: int|{store_sales}ss_customer_sk,ss_cdemo_sk: int|{store_sales}ss_cdemo_sk,ss_hdemo_sk: int|{store_sales}ss_hdemo_sk,ss_addr_sk: int|{store_sales}ss_addr_sk,ss_store_sk: int|{store_sales}ss_store_sk,ss_promo_sk: int|{store_sales}ss_promo_sk,ss_ticket_number: int|{store_sales}ss_ticket_number,ss_quantity: int|{store_sales}ss_quantity,ss_wholesale_cost: float|{store_sales}ss_wholesale_cost,ss_list_price: float|{store_sales}ss_list_price,ss_sales_price: float|{store_sales}ss_sales_price,ss_ext_discount_amt: float|{store_sales}ss_ext_discount_amt,ss_ext_sales_price: float|{store_sales}ss_ext_sales_price,ss_ext_wholesale_cost: float|{store_sales}ss_ext_wholesale_cost,ss_ext_list_price: float|{store_sales}ss_ext_list_price,ss_ext_tax: float|{store_sales}ss_ext_tax,ss_coupon_amt: float|{store_sales}ss_coupon_amt,ss_net_paid: float|{store_sales}ss_net_paid,ss_net_paid_inc_tax: float|{store_sales}ss_net_paid_inc_tax,ss_net_profit: float|{store_sales}ss_net_profit,ss_sold_date: string|{store_sales}ss_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{store_sales}input__file__name,ROW__ID: struct|{store_sales}row__id)
2015-04-07 18:20:29,115 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[201]
2015-04-07 18:20:29,115 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[201] conditions:(((((((ss_sold_date_sk is not null and (ss_sold_date_sk) IN (RS[21])) and ss_item_sk is not null) and (ss_item_sk) IN (RS[26])) and ss_promo_sk is not null) and (ss_promo_sk) IN (RS[31])) and ss_store_sk is not null) and (ss_store_sk) IN (RS[36]))
2015-04-07 18:20:29,115 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[201] conditions:(((((((ss_sold_date_sk is not null and (ss_sold_date_sk) IN (RS[21])) and ss_item_sk is not null) and (ss_item_sk) IN (RS[26])) and ss_promo_sk is not null) and (ss_promo_sk) IN (RS[31])) and ss_store_sk is not null) and (ss_store_sk) IN (RS[36]))
2015-04-07 18:20:29,115 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[202] with rs:(sr_returned_date_sk: int|{store_returns}sr_returned_date_sk,sr_return_time_sk: int|{store_returns}sr_return_time_sk,sr_item_sk: int|{store_returns}sr_item_sk,sr_customer_sk: int|{store_returns}sr_customer_sk,sr_cdemo_sk: int|{store_returns}sr_cdemo_sk,sr_hdemo_sk: int|{store_returns}sr_hdemo_sk,sr_addr_sk: int|{store_returns}sr_addr_sk,sr_store_sk: int|{store_returns}sr_store_sk,sr_reason_sk: int|{store_returns}sr_reason_sk,sr_ticket_number: int|{store_returns}sr_ticket_number,sr_return_quantity: int|{store_returns}sr_return_quantity,sr_return_amt: float|{store_returns}sr_return_amt,sr_return_tax: float|{store_returns}sr_return_tax,sr_return_amt_inc_tax: float|{store_returns}sr_return_amt_inc_tax,sr_fee: float|{store_returns}sr_fee,sr_return_ship_cost: float|{store_returns}sr_return_ship_cost,sr_refunded_cash: float|{store_returns}sr_refunded_cash,sr_reversed_charge: float|{store_returns}sr_reversed_charge,sr_store_credit: float|{store_returns}sr_store_credit,sr_net_loss: float|{store_returns}sr_net_loss,sr_returned_date: string|{store_returns}sr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{store_returns}input__file__name,ROW__ID: struct|{store_returns}row__id)
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[202]
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[202] conditions:((((sr_item_sk) IN (RS[15]) and (sr_ticket_number) IN (RS[15])) and sr_item_sk is not null) and (sr_item_sk) IN (RS[26]))
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[202] conditions:((((sr_item_sk) IN (RS[15]) and (sr_ticket_number) IN (RS[15])) and sr_item_sk is not null) and (sr_item_sk) IN (RS[26]))
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[203] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[203]
2015-04-07 18:20:29,116 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[203] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[19]))
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[203] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[19]))
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[204] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[204]
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[204] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[24]))
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[204] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[24]))
2015-04-07 18:20:29,117 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[205] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[205]
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[205] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[29]))
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@21d2c3d4 is identified as a value assignment, propagate it.
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[205] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[29]))
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[205]
2015-04-07 18:20:29,118 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[206] with rs:(s_store_sk: int|{store}s_store_sk,s_store_id: string|{store}s_store_id,s_rec_start_date: string|{store}s_rec_start_date,s_rec_end_date: string|{store}s_rec_end_date,s_closed_date_sk: int|{store}s_closed_date_sk,s_store_name: string|{store}s_store_name,s_number_employees: int|{store}s_number_employees,s_floor_space: int|{store}s_floor_space,s_hours: string|{store}s_hours,s_manager: string|{store}s_manager,s_market_id: int|{store}s_market_id,s_geography_class: string|{store}s_geography_class,s_market_desc: string|{store}s_market_desc,s_market_manager: string|{store}s_market_manager,s_division_id: int|{store}s_division_id,s_division_name: string|{store}s_division_name,s_company_id: int|{store}s_company_id,s_company_name: string|{store}s_company_name,s_street_number: string|{store}s_street_number,s_street_name: string|{store}s_street_name,s_street_type: string|{store}s_street_type,s_suite_number: string|{store}s_suite_number,s_city: string|{store}s_city,s_county: string|{store}s_county,s_state: string|{store}s_state,s_zip: string|{store}s_zip,s_country: string|{store}s_country,s_gmt_offset: float|{store}s_gmt_offset,s_tax_precentage: float|{store}s_tax_precentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{store}block__offset__inside__file,INPUT__FILE__NAME: string|{store}input__file__name,ROW__ID: struct|{store}row__id)
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[206]
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[206] conditions:(s_store_sk is not null and (s_store_sk) IN (RS[34]))
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[206] conditions:(s_store_sk is not null and (s_store_sk) IN (RS[34]))
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[207] with rs:(cs_sold_date_sk: int|{catalog_sales}cs_sold_date_sk,cs_sold_time_sk: int|{catalog_sales}cs_sold_time_sk,cs_ship_date_sk: int|{catalog_sales}cs_ship_date_sk,cs_bill_customer_sk: int|{catalog_sales}cs_bill_customer_sk,cs_bill_cdemo_sk: int|{catalog_sales}cs_bill_cdemo_sk,cs_bill_hdemo_sk: int|{catalog_sales}cs_bill_hdemo_sk,cs_bill_addr_sk: int|{catalog_sales}cs_bill_addr_sk,cs_ship_customer_sk: int|{catalog_sales}cs_ship_customer_sk,cs_ship_cdemo_sk: int|{catalog_sales}cs_ship_cdemo_sk,cs_ship_hdemo_sk: int|{catalog_sales}cs_ship_hdemo_sk,cs_ship_addr_sk: int|{catalog_sales}cs_ship_addr_sk,cs_call_center_sk: int|{catalog_sales}cs_call_center_sk,cs_catalog_page_sk: int|{catalog_sales}cs_catalog_page_sk,cs_ship_mode_sk: int|{catalog_sales}cs_ship_mode_sk,cs_warehouse_sk: int|{catalog_sales}cs_warehouse_sk,cs_item_sk: int|{catalog_sales}cs_item_sk,cs_promo_sk: int|{catalog_sales}cs_promo_sk,cs_order_number: int|{catalog_sales}cs_order_number,cs_quantity: int|{catalog_sales}cs_quantity,cs_wholesale_cost: float|{catalog_sales}cs_wholesale_cost,cs_list_price: float|{catalog_sales}cs_list_price,cs_sales_price: float|{catalog_sales}cs_sales_price,cs_ext_discount_amt: float|{catalog_sales}cs_ext_discount_amt,cs_ext_sales_price: float|{catalog_sales}cs_ext_sales_price,cs_ext_wholesale_cost: float|{catalog_sales}cs_ext_wholesale_cost,cs_ext_list_price: float|{catalog_sales}cs_ext_list_price,cs_ext_tax: float|{catalog_sales}cs_ext_tax,cs_coupon_amt: float|{catalog_sales}cs_coupon_amt,cs_ext_ship_cost: float|{catalog_sales}cs_ext_ship_cost,cs_net_paid: float|{catalog_sales}cs_net_paid,cs_net_paid_inc_tax: float|{catalog_sales}cs_net_paid_inc_tax,cs_net_paid_inc_ship: float|{catalog_sales}cs_net_paid_inc_ship,cs_net_paid_inc_ship_tax: float|{catalog_sales}cs_net_paid_inc_ship_tax,cs_net_profit: float|{catalog_sales}cs_net_profit,cs_sold_date: string|{catalog_sales}cs_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_sales}input__file__name,ROW__ID: struct|{catalog_sales}row__id)
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[207]
2015-04-07 18:20:29,119 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[207] conditions:(((((((cs_sold_date_sk is not null and (cs_sold_date_sk) IN (RS[65])) and cs_catalog_page_sk is not null) and (cs_catalog_page_sk) IN (RS[70])) and cs_item_sk is not null) and (cs_item_sk) IN (RS[75])) and cs_promo_sk is not null) and (cs_promo_sk) IN (RS[80]))
2015-04-07 18:20:29,120 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[207] conditions:(((((((cs_sold_date_sk is not null and (cs_sold_date_sk) IN (RS[65])) and cs_catalog_page_sk is not null) and (cs_catalog_page_sk) IN (RS[70])) and cs_item_sk is not null) and (cs_item_sk) IN (RS[75])) and cs_promo_sk is not null) and (cs_promo_sk) IN (RS[80]))
2015-04-07 18:20:29,120 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[208] with rs:(cr_returned_date_sk: int|{catalog_returns}cr_returned_date_sk,cr_returned_time_sk: int|{catalog_returns}cr_returned_time_sk,cr_item_sk: int|{catalog_returns}cr_item_sk,cr_refunded_customer_sk: int|{catalog_returns}cr_refunded_customer_sk,cr_refunded_cdemo_sk: int|{catalog_returns}cr_refunded_cdemo_sk,cr_refunded_hdemo_sk: int|{catalog_returns}cr_refunded_hdemo_sk,cr_refunded_addr_sk: int|{catalog_returns}cr_refunded_addr_sk,cr_returning_customer_sk: int|{catalog_returns}cr_returning_customer_sk,cr_returning_cdemo_sk: int|{catalog_returns}cr_returning_cdemo_sk,cr_returning_hdemo_sk: int|{catalog_returns}cr_returning_hdemo_sk,cr_returning_addr_sk: int|{catalog_returns}cr_returning_addr_sk,cr_call_center_sk: int|{catalog_returns}cr_call_center_sk,cr_catalog_page_sk: int|{catalog_returns}cr_catalog_page_sk,cr_ship_mode_sk: int|{catalog_returns}cr_ship_mode_sk,cr_warehouse_sk: int|{catalog_returns}cr_warehouse_sk,cr_reason_sk: int|{catalog_returns}cr_reason_sk,cr_order_number: int|{catalog_returns}cr_order_number,cr_return_quantity: int|{catalog_returns}cr_return_quantity,cr_return_amount: float|{catalog_returns}cr_return_amount,cr_return_tax: float|{catalog_returns}cr_return_tax,cr_return_amt_inc_tax: float|{catalog_returns}cr_return_amt_inc_tax,cr_fee: float|{catalog_returns}cr_fee,cr_return_ship_cost: float|{catalog_returns}cr_return_ship_cost,cr_refunded_cash: float|{catalog_returns}cr_refunded_cash,cr_reversed_charge: float|{catalog_returns}cr_reversed_charge,cr_store_credit: float|{catalog_returns}cr_store_credit,cr_net_loss: float|{catalog_returns}cr_net_loss,cr_returned_date: string|{catalog_returns}cr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_returns}input__file__name,ROW__ID: struct|{catalog_returns}row__id)
2015-04-07 18:20:29,120 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[208]
2015-04-07 18:20:29,120 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[208] conditions:((((cr_item_sk) IN (RS[59]) and (cr_order_number) IN (RS[59])) and cr_item_sk is not null) and (cr_item_sk) IN (RS[75]))
2015-04-07 18:20:29,120 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[208] conditions:((((cr_item_sk) IN (RS[59]) and (cr_order_number) IN (RS[59])) and cr_item_sk is not null) and (cr_item_sk) IN (RS[75]))
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[209] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[209]
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[209] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[63]))
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[209] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[63]))
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[210] with rs:(cp_catalog_page_sk: int|{catalog_page}cp_catalog_page_sk,cp_catalog_page_id: string|{catalog_page}cp_catalog_page_id,cp_start_date_sk: int|{catalog_page}cp_start_date_sk,cp_end_date_sk: int|{catalog_page}cp_end_date_sk,cp_department: string|{catalog_page}cp_department,cp_catalog_number: int|{catalog_page}cp_catalog_number,cp_catalog_page_number: int|{catalog_page}cp_catalog_page_number,cp_description: string|{catalog_page}cp_description,cp_type: string|{catalog_page}cp_type,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_page}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_page}input__file__name,ROW__ID: struct|{catalog_page}row__id)
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[210]
2015-04-07 18:20:29,121 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[210] conditions:(cp_catalog_page_sk is not null and (cp_catalog_page_sk) IN (RS[68]))
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[210] conditions:(cp_catalog_page_sk is not null and (cp_catalog_page_sk) IN (RS[68]))
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[211] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[211]
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[211] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[73]))
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[211] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[73]))
2015-04-07 18:20:29,122 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[212] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[212]
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[212] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[78]))
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@1436a4a5 is identified as a value assignment, propagate it.
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[212] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[78]))
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[212]
2015-04-07 18:20:29,123 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[213] with rs:(ws_sold_date_sk: int|{web_sales}ws_sold_date_sk,ws_sold_time_sk: int|{web_sales}ws_sold_time_sk,ws_ship_date_sk: int|{web_sales}ws_ship_date_sk,ws_item_sk: int|{web_sales}ws_item_sk,ws_bill_customer_sk: int|{web_sales}ws_bill_customer_sk,ws_bill_cdemo_sk: int|{web_sales}ws_bill_cdemo_sk,ws_bill_hdemo_sk: int|{web_sales}ws_bill_hdemo_sk,ws_bill_addr_sk: int|{web_sales}ws_bill_addr_sk,ws_ship_customer_sk: int|{web_sales}ws_ship_customer_sk,ws_ship_cdemo_sk: int|{web_sales}ws_ship_cdemo_sk,ws_ship_hdemo_sk: int|{web_sales}ws_ship_hdemo_sk,ws_ship_addr_sk: int|{web_sales}ws_ship_addr_sk,ws_web_page_sk: int|{web_sales}ws_web_page_sk,ws_web_site_sk: int|{web_sales}ws_web_site_sk,ws_ship_mode_sk: int|{web_sales}ws_ship_mode_sk,ws_warehouse_sk: int|{web_sales}ws_warehouse_sk,ws_promo_sk: int|{web_sales}ws_promo_sk,ws_order_number: int|{web_sales}ws_order_number,ws_quantity: int|{web_sales}ws_quantity,ws_wholesale_cost: float|{web_sales}ws_wholesale_cost,ws_list_price: float|{web_sales}ws_list_price,ws_sales_price: float|{web_sales}ws_sales_price,ws_ext_discount_amt: float|{web_sales}ws_ext_discount_amt,ws_ext_sales_price: float|{web_sales}ws_ext_sales_price,ws_ext_wholesale_cost: float|{web_sales}ws_ext_wholesale_cost,ws_ext_list_price: float|{web_sales}ws_ext_list_price,ws_ext_tax: float|{web_sales}ws_ext_tax,ws_coupon_amt: float|{web_sales}ws_coupon_amt,ws_ext_ship_cost: float|{web_sales}ws_ext_ship_cost,ws_net_paid: float|{web_sales}ws_net_paid,ws_net_paid_inc_tax: float|{web_sales}ws_net_paid_inc_tax,ws_net_paid_inc_ship: float|{web_sales}ws_net_paid_inc_ship,ws_net_paid_inc_ship_tax: float|{web_sales}ws_net_paid_inc_ship_tax,ws_net_profit: float|{web_sales}ws_net_profit,ws_sold_date: string|{web_sales}ws_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{web_sales}input__file__name,ROW__ID: struct|{web_sales}row__id)
2015-04-07 18:20:29,124 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[213]
2015-04-07 18:20:29,124 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[213] conditions:(((((((ws_web_site_sk is not null and (ws_web_site_sk) IN (RS[111])) and ws_sold_date_sk is not null) and (ws_sold_date_sk) IN (RS[116])) and ws_item_sk is not null) and (ws_item_sk) IN (RS[121])) and ws_promo_sk is not null) and (ws_promo_sk) IN (RS[126]))
2015-04-07 18:20:29,126 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[213] conditions:(((((((ws_web_site_sk is not null and (ws_web_site_sk) IN (RS[111])) and ws_sold_date_sk is not null) and (ws_sold_date_sk) IN (RS[116])) and ws_item_sk is not null) and (ws_item_sk) IN (RS[121])) and ws_promo_sk is not null) and (ws_promo_sk) IN (RS[126]))
2015-04-07 18:20:29,126 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[214] with rs:(wr_returned_date_sk: int|{web_returns}wr_returned_date_sk,wr_returned_time_sk: int|{web_returns}wr_returned_time_sk,wr_item_sk: int|{web_returns}wr_item_sk,wr_refunded_customer_sk: int|{web_returns}wr_refunded_customer_sk,wr_refunded_cdemo_sk: int|{web_returns}wr_refunded_cdemo_sk,wr_refunded_hdemo_sk: int|{web_returns}wr_refunded_hdemo_sk,wr_refunded_addr_sk: int|{web_returns}wr_refunded_addr_sk,wr_returning_customer_sk: int|{web_returns}wr_returning_customer_sk,wr_returning_cdemo_sk: int|{web_returns}wr_returning_cdemo_sk,wr_returning_hdemo_sk: int|{web_returns}wr_returning_hdemo_sk,wr_returning_addr_sk: int|{web_returns}wr_returning_addr_sk,wr_web_page_sk: int|{web_returns}wr_web_page_sk,wr_reason_sk: int|{web_returns}wr_reason_sk,wr_order_number: int|{web_returns}wr_order_number,wr_return_quantity: int|{web_returns}wr_return_quantity,wr_return_amt: float|{web_returns}wr_return_amt,wr_return_tax: float|{web_returns}wr_return_tax,wr_return_amt_inc_tax: float|{web_returns}wr_return_amt_inc_tax,wr_fee: float|{web_returns}wr_fee,wr_return_ship_cost: float|{web_returns}wr_return_ship_cost,wr_refunded_cash: float|{web_returns}wr_refunded_cash,wr_reversed_charge: float|{web_returns}wr_reversed_charge,wr_account_credit: float|{web_returns}wr_account_credit,wr_net_loss: float|{web_returns}wr_net_loss,wr_returned_date: string|{web_returns}wr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{web_returns}input__file__name,ROW__ID: struct|{web_returns}row__id)
2015-04-07 18:20:29,126 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[214]
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[214] conditions:((((wr_item_sk) IN (RS[105]) and (wr_order_number) IN (RS[105])) and wr_item_sk is not null) and (wr_item_sk) IN (RS[121]))
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[214] conditions:((((wr_item_sk) IN (RS[105]) and (wr_order_number) IN (RS[105])) and wr_item_sk is not null) and (wr_item_sk) IN (RS[121]))
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[215] with rs:(web_site_sk: int|{web_site}web_site_sk,web_site_id: string|{web_site}web_site_id,web_rec_start_date: string|{web_site}web_rec_start_date,web_rec_end_date: string|{web_site}web_rec_end_date,web_name: string|{web_site}web_name,web_open_date_sk: int|{web_site}web_open_date_sk,web_close_date_sk: int|{web_site}web_close_date_sk,web_class: string|{web_site}web_class,web_manager: string|{web_site}web_manager,web_mkt_id: int|{web_site}web_mkt_id,web_mkt_class: string|{web_site}web_mkt_class,web_mkt_desc: string|{web_site}web_mkt_desc,web_market_manager: string|{web_site}web_market_manager,web_company_id: int|{web_site}web_company_id,web_company_name: string|{web_site}web_company_name,web_street_number: string|{web_site}web_street_number,web_street_name: string|{web_site}web_street_name,web_street_type: string|{web_site}web_street_type,web_suite_number: string|{web_site}web_suite_number,web_city: string|{web_site}web_city,web_county: string|{web_site}web_county,web_state: string|{web_site}web_state,web_zip: string|{web_site}web_zip,web_country: string|{web_site}web_country,web_gmt_offset: float|{web_site}web_gmt_offset,web_tax_percentage: float|{web_site}web_tax_percentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_site}block__offset__inside__file,INPUT__FILE__NAME: string|{web_site}input__file__name,ROW__ID: struct|{web_site}row__id)
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[215]
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[215] conditions:(web_site_sk is not null and (web_site_sk) IN (RS[109]))
2015-04-07 18:20:29,127 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[215] conditions:(web_site_sk is not null and (web_site_sk) IN (RS[109]))
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[216] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[216]
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[216] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[114]))
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[216] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[114]))
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[217] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,128 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[217]
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[217] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[119]))
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[217] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[119]))
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[218] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[218]
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[218] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[124]))
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@4d8560cb is identified as a value assignment, propagate it.
2015-04-07 18:20:29,129 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[218] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[124]))
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[218]
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[1] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[1]
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ss_sold_date_sk] Column[ss_item_sk] Column[ss_store_sk] Column[ss_promo_sk] Column[ss_ticket_number] Column[ss_ext_sales_price] Column[ss_net_profit])
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[3] with rs:(_col0: int|{$hdt$_1}sr_item_sk,_col1: int|{$hdt$_1}sr_ticket_number,_col2: float|{$hdt$_1}sr_return_amt,_col3: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[3]
2015-04-07 18:20:29,130 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[sr_item_sk] Column[sr_ticket_number] Column[sr_return_amt] Column[sr_net_loss])
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[6] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[6]
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[9] with rs:(_col0: int|{$hdt$_3}i_item_sk,_col1: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[9]
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:29,131 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[12] with rs:(_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_4}p_promo_sk,_col1: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[12]
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[12]
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[14] with rs:(_col0: int|{$hdt$_5}s_store_sk,_col1: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[14]
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[s_store_sk] Column[s_store_id])
2015-04-07 18:20:29,132 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[45] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[45]
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cs_sold_date_sk] Column[cs_catalog_page_sk] Column[cs_item_sk] Column[cs_promo_sk] Column[cs_order_number] Column[cs_ext_sales_price] Column[cs_net_profit])
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[47] with rs:(_col0: int|{$hdt$_1}cr_item_sk,_col1: int|{$hdt$_1}cr_order_number,_col2: float|{$hdt$_1}cr_return_amount,_col3: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[47]
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cr_item_sk] Column[cr_order_number] Column[cr_return_amount] Column[cr_net_loss])
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[50] with rs:(_col0: int|{$hdt$_2}d_date_sk,_col1: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[50]
2015-04-07 18:20:29,133 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[52] with rs:(_col0: int|{$hdt$_3}cp_catalog_page_sk,_col1: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[52]
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cp_catalog_page_sk] Column[cp_catalog_page_id])
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[55] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[55]
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:29,134 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[58] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[58]
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[58]
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[91] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[91]
2015-04-07 18:20:29,135 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ws_sold_date_sk] Column[ws_item_sk] Column[ws_web_site_sk] Column[ws_promo_sk] Column[ws_order_number] Column[ws_ext_sales_price] Column[ws_net_profit])
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[93] with rs:(_col0: int|{$hdt$_1}wr_item_sk,_col1: int|{$hdt$_1}wr_order_number,_col2: float|{$hdt$_1}wr_return_amt,_col3: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[93]
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[wr_item_sk] Column[wr_order_number] Column[wr_return_amt] Column[wr_net_loss])
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[95] with rs:(_col0: int|{$hdt$_2}web_site_sk,_col1: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[95]
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[web_site_sk] Column[web_site_id])
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[98] with rs:(_col0: int|{$hdt$_3}d_date_sk,_col1: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,136 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[98]
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk] Column[d_date])
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[101] with rs:(_col0: int|{$hdt$_4}i_item_sk,_col1: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[101]
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk] Column[i_current_price])
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[104] with rs:(_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved promotion.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_5}p_promo_sk,_col1: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col1: string] to operator SEL[104]
2015-04-07 18:20:29,137 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col1: string with constant Const string N in SEL[104]
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk] Const string N)
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[15] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ss_ticket_number,VALUE._col3: float|{$hdt$_0}ss_ext_sales_price,VALUE._col4: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[15]
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[16] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}sr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}sr_ticket_number,VALUE._col0: float|{$hdt$_1}sr_return_amt,VALUE._col1: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[16]
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:29,138 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,139 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[59] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}cs_order_number,VALUE._col3: float|{$hdt$_0}cs_ext_sales_price,VALUE._col4: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[59]
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[60] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}cr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}cr_order_number,VALUE._col0: float|{$hdt$_1}cr_return_amount,VALUE._col1: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[60]
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,140 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[80]
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[80]
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[105] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ws_order_number,VALUE._col3: float|{$hdt$_0}ws_ext_sales_price,VALUE._col4: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:29,141 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[105]
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[106] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}wr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}wr_order_number,VALUE._col0: float|{$hdt$_1}wr_return_amt,VALUE._col1: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[106]
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,142 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[126]
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[126]
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[17] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[17]
2015-04-07 18:20:29,143 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[19] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[19]
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[22] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[22]
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,144 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[24] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[24]
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk,VALUE._col0: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[27] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[27]
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,145 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[29] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,VALUE._col2: int|{$hdt$_0}ss_store_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price)
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[29]
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk,VALUE._col0: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,146 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[31]
2015-04-07 18:20:29,147 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[31]
2015-04-07 18:20:29,147 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[32] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,147 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,147 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col16: string] to operator JOIN[32]
2015-04-07 18:20:29,147 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(929)) - Skip JOIN-RS structure.
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[61] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[61]
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[63] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[63]
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk,VALUE._col0: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,148 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:29,149 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[66] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,149 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[66]
2015-04-07 18:20:29,149 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,149 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,149 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[68] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date)
2015-04-07 18:20:29,151 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[68]
2015-04-07 18:20:29,151 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,151 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[71] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[71]
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[73] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[73]
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,152 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[76] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[76]
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[80]
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[80]
2015-04-07 18:20:29,153 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[107] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[107]
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[109] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col1: int|{$hdt$_0}ws_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[109]
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[112] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[112]
2015-04-07 18:20:29,154 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[114] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[114]
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk,VALUE._col0: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[117] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,155 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[117]
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[119] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id,VALUE._col12: int|{$hdt$_3}d_date_sk,VALUE._col13: string|{$hdt$_3}d_date)
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[119]
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk,VALUE._col0: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,156 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[122] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[122]
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk,VALUE._col0: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col0: string] to operator RS[126]
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col0: string with constant Const string N in RS[126]
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[34] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price,VALUE._col14: int|{$hdt$_4}p_promo_sk,VALUE._col15: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col1: int|{$hdt$_0}ss_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col3: int|{$hdt$_0}ss_ticket_number,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col6: int|{$hdt$_1}sr_item_sk,VALUE._col7: int|{$hdt$_1}sr_ticket_number,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}i_item_sk,VALUE._col13: float|{$hdt$_3}i_current_price,VALUE._col14: int|{$hdt$_4}p_promo_sk,VALUE._col15: string|{$hdt$_4}p_channel_tv)
2015-04-07 18:20:29,157 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [VALUE._col15: string] to operator RS[34]
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column VALUE._col15: string with constant Const string N in RS[34]
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[78] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col2: int|{$hdt$_0}cs_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_promo_sk,VALUE._col3: int|{$hdt$_0}cs_order_number,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col6: int|{$hdt$_1}cr_item_sk,VALUE._col7: int|{$hdt$_1}cr_order_number,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col10: int|{$hdt$_2}d_date_sk,VALUE._col11: string|{$hdt$_2}d_date,VALUE._col12: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id,VALUE._col14: int|{$hdt$_4}i_item_sk,VALUE._col15: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[78]
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[124] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col1: int|{$hdt$_0}ws_item_sk,VALUE._col2: int|{$hdt$_0}ws_web_site_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_promo_sk,VALUE._col3: int|{$hdt$_0}ws_order_number,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col6: int|{$hdt$_1}wr_item_sk,VALUE._col7: int|{$hdt$_1}wr_order_number,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col10: int|{$hdt$_2}web_site_sk,VALUE._col11: string|{$hdt$_2}web_site_id,VALUE._col12: int|{$hdt$_3}d_date_sk,VALUE._col13: string|{$hdt$_3}d_date,VALUE._col14: int|{$hdt$_4}i_item_sk,VALUE._col15: float|{$hdt$_4}i_current_price)
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[124]
2015-04-07 18:20:29,158 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[37] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv,_col17: int|{$hdt$_5}s_store_sk,_col18: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,159 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_4.p_channel_tv as $hdt$_4.p_channel_tv with rs: (_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col7: int|{$hdt$_1}sr_item_sk,_col8: int|{$hdt$_1}sr_ticket_number,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}i_item_sk,_col14: float|{$hdt$_3}i_current_price,_col15: int|{$hdt$_4}p_promo_sk,_col16: string|{$hdt$_4}p_channel_tv,_col17: int|{$hdt$_5}s_store_sk,_col18: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,159 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col16: string] to operator JOIN[37]
2015-04-07 18:20:29,159 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,159 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,159 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col16: string with constant Const string N in JOIN[37]
2015-04-07 18:20:29,159 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[81] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,160 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col7: int|{$hdt$_1}cr_item_sk,_col8: int|{$hdt$_1}cr_order_number,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col11: int|{$hdt$_2}d_date_sk,_col12: string|{$hdt$_2}d_date,_col13: int|{$hdt$_3}cp_catalog_page_sk,_col14: string|{$hdt$_3}cp_catalog_page_id,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,160 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col18: string] to operator JOIN[81]
2015-04-07 18:20:29,160 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,160 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,160 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col18: string with constant Const string N in JOIN[81]
2015-04-07 18:20:29,160 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[127] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,161 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:resolve(87)) - Resolved $hdt$_5.p_channel_tv as $hdt$_5.p_channel_tv with rs: (_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col7: int|{$hdt$_1}wr_item_sk,_col8: int|{$hdt$_1}wr_order_number,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col11: int|{$hdt$_2}web_site_sk,_col12: string|{$hdt$_2}web_site_id,_col13: int|{$hdt$_3}d_date_sk,_col14: string|{$hdt$_3}d_date,_col15: int|{$hdt$_4}i_item_sk,_col16: float|{$hdt$_4}i_current_price,_col17: int|{$hdt$_5}p_promo_sk,_col18: string|{$hdt$_5}p_channel_tv)
2015-04-07 18:20:29,161 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [_col18: string] to operator JOIN[127]
2015-04-07 18:20:29,161 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(932)) - Old exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,161 INFO [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(952)) - New exprs {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,161 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column _col18: string with constant Const string N in JOIN[127]
2015-04-07 18:20:29,161 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[38] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_4.p_channel_tv(_col16) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[38]
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col18] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[82] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_5.p_channel_tv(_col18) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[82]
2015-04-07 18:20:29,162 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col14] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[128] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve $hdt$_5.p_channel_tv(_col18) from rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[128]
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col12] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[39] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[39]
2015-04-07 18:20:29,163 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[83] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[83]
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[129] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[129]
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[40] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,164 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[40]
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[84] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[84]
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[130] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[130]
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[41] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[41]
2015-04-07 18:20:29,165 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[85] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[85]
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[131] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[131]
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[42] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[42]
2015-04-07 18:20:29,166 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[86] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,167 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[86]
2015-04-07 18:20:29,167 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[132] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,167 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[132]
2015-04-07 18:20:29,167 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[43] with rs:(_col0: string|{$hdt$_0-subquery1}channel,_col1: string|{$hdt$_0-subquery1}id,_col2: double|{$hdt$_0-subquery1}sales,_col3: double|{$hdt$_0-subquery1}returns,_col4: double|{$hdt$_0-subquery1}profit)
2015-04-07 18:20:29,167 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[43]
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string store channel GenericUDFConcat(Const string store, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[87] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[87]
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string catalog channel GenericUDFConcat(Const string catalog_page, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[133] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:29,168 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[133]
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string web channel GenericUDFConcat(Const string web_site, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:UNION[88] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(124)) - Constant of op SEL_43 {}
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[134] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[134]
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3] Column[_col4])
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[135] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:29,169 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[135]
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col2] Column[_col3] Column[_col4])
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[136] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col2: string|{null}grouping__id,_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[136]
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[137] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) channel),KEY._col1: string|{}(. (tok_table_or_col $hdt$_0) id),KEY._col2: string|{null}grouping__id,VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[137]
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[138] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col2: string|{null}grouping__id,_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,170 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[138]
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[139] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[139]
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col3] Column[_col4] Column[_col5])
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[140] with rs:(KEY.reducesinkkey0: string|{null}channel,KEY.reducesinkkey1: string|{null}id,VALUE._col0: double|{null}sales,VALUE._col1: double|{null}returns,VALUE._col2: double|{null}profit)
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[140]
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[141] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[141]
2015-04-07 18:20:29,171 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[KEY.reducesinkkey0] Column[KEY.reducesinkkey1] Column[VALUE._col0] Column[VALUE._col1] Column[VALUE._col2])
2015-04-07 18:20:29,172 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:LIM[142] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,172 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator LIM[142]
2015-04-07 18:20:29,172 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FS[143] with rs:(_col0: string|{},_col1: string|{},_col2: double|{},_col3: double|{},_col4: double|{})
2015-04-07 18:20:29,172 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FS[143]
2015-04-07 18:20:29,223 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 140 key:[Column[_col0], Column[_col1]]
2015-04-07 18:20:29,223 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 140 oldColExprMap: {VALUE._col2=Column[_col4], VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,223 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 140 newColExprMap: {VALUE._col2=Column[_col4], VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,224 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 137 key:[Column[_col0], Column[_col1], Column[_col2]]
2015-04-07 18:20:29,224 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 137 oldColExprMap: {KEY._col2=Column[_col2], KEY._col0=Column[_col0], VALUE._col2=Column[_col5], KEY._col1=Column[_col1], VALUE._col1=Column[_col4], VALUE._col0=Column[_col3]}
2015-04-07 18:20:29,224 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 137 newColExprMap: {KEY._col2=Column[_col2], KEY._col0=Column[_col0], VALUE._col2=Column[_col5], KEY._col1=Column[_col1], VALUE._col1=Column[_col4], VALUE._col0=Column[_col3]}
2015-04-07 18:20:29,225 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 131 key:[Column[_col0]]
2015-04-07 18:20:29,225 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 131 oldColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,226 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 131 newColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,226 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 41 key:[Column[_col0]]
2015-04-07 18:20:29,226 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 41 oldColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,227 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 41 newColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,227 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 85 key:[Column[_col0]]
2015-04-07 18:20:29,227 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 85 oldColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,227 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 85 newColExprMap: {KEY._col0=Column[_col0], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1]}
2015-04-07 18:20:29,228 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 81 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,228 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 81 newExprs: {0=[Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col13]], 1=[]}
2015-04-07 18:20:29,228 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 127 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14], Column[VALUE._col15]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,229 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 127 newExprs: {0=[Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col11]], 1=[]}
2015-04-07 18:20:29,229 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 124 key:[Column[_col3]]
2015-04-07 18:20:29,229 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 124 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col2], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col3], VALUE._col14=Column[_col15], VALUE._col13=Column[_col14], VALUE._col15=Column[_col16], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,229 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 124 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,230 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 122 oldExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,230 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 124 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,230 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 124 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,230 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 122 newExprs: {0=[Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col11]], 1=[]}
2015-04-07 18:20:29,230 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 119 key:[Column[_col1]]
2015-04-07 18:20:29,231 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 119 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,231 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 119 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,231 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 121 key:[Column[_col0]]
2015-04-07 18:20:29,231 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 121 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,231 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 121 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,233 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 126 key:[Column[_col0]]
2015-04-07 18:20:29,234 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 126 oldColExprMap: {VALUE._col0=Const string N, KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,234 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 126 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,234 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 37 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13], Column[VALUE._col14]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,234 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 37 newExprs: {0=[Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[VALUE._col0]]}
2015-04-07 18:20:29,234 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 34 key:[Column[_col2]]
2015-04-07 18:20:29,235 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 34 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col14=Column[_col15], VALUE._col13=Column[_col14], VALUE._col15=Const string N, VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,235 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 34 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,235 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 32 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey0], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13]], 1=[Column[KEY.reducesinkkey0]]}
2015-04-07 18:20:29,235 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 34 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,236 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 34 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,236 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 32 newExprs: {0=[Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[]}
2015-04-07 18:20:29,236 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 29 key:[Column[_col3]]
2015-04-07 18:20:29,236 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 29 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col2], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col3], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,236 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 29 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col2], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,237 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 31 key:[Column[_col0]]
2015-04-07 18:20:29,237 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 31 oldColExprMap: {VALUE._col0=Const string N, KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,237 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 31 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,237 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 36 key:[Column[_col0]]
2015-04-07 18:20:29,237 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 36 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,237 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 36 newColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,237 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 78 key:[Column[_col3]]
2015-04-07 18:20:29,238 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 78 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col2], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col3], VALUE._col14=Column[_col15], VALUE._col13=Column[_col14], VALUE._col15=Column[_col16], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,238 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 78 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,238 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 76 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11], Column[VALUE._col12], Column[VALUE._col13]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,238 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 78 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,239 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 78 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], KEY.reducesinkkey0=Column[_col3], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,239 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 76 newExprs: {0=[Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col13]], 1=[]}
2015-04-07 18:20:29,239 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 73 key:[Column[_col2]]
2015-04-07 18:20:29,239 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 73 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col12=Column[_col13], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,239 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 73 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col2], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,240 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 71 oldExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,240 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 73 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col2], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,240 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 73 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col2], VALUE._col13=Column[_col14], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,240 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 71 newExprs: {0=[Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[VALUE._col0]]}
2015-04-07 18:20:29,240 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 75 key:[Column[_col0]]
2015-04-07 18:20:29,240 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 75 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,241 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 75 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,241 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 80 key:[Column[_col0]]
2015-04-07 18:20:29,241 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 80 oldColExprMap: {VALUE._col0=Const string N, KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,241 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 80 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,241 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 117 oldExprs: {0=[Column[KEY.reducesinkkey0], Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,241 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 119 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,242 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 119 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,242 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 117 newExprs: {0=[Column[VALUE._col0], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col11]], 1=[]}
2015-04-07 18:20:29,242 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 114 key:[Column[_col0]]
2015-04-07 18:20:29,242 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 114 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,242 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 114 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,243 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 112 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,243 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 114 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,243 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 114 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col11=Column[_col12]}
2015-04-07 18:20:29,243 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 112 newExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[VALUE._col0]]}
2015-04-07 18:20:29,243 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 116 key:[Column[_col0]]
2015-04-07 18:20:29,243 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 116 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,244 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 116 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,244 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 121 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,244 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 121 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,244 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 126 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,244 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 126 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,245 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 27 oldExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9], Column[VALUE._col10], Column[VALUE._col11]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,245 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 29 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col2], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,245 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 29 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col2], KEY.reducesinkkey0=Column[_col3], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,245 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 27 newExprs: {0=[Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[]}
2015-04-07 18:20:29,245 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 24 key:[Column[_col1]]
2015-04-07 18:20:29,245 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 24 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,246 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 24 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,246 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 22 oldExprs: {0=[Column[KEY.reducesinkkey0], Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,246 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 24 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,246 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 24 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,246 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 22 newExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[]}
2015-04-07 18:20:29,246 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 26 key:[Column[_col0]]
2015-04-07 18:20:29,247 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 26 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,247 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 26 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,247 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 31 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,247 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 31 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,247 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 68 key:[Column[_col1]]
2015-04-07 18:20:29,247 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 68 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7], VALUE._col11=Column[_col12], VALUE._col10=Column[_col11]}
2015-04-07 18:20:29,248 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 68 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,248 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 66 oldExprs: {0=[Column[KEY.reducesinkkey0], Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col6], Column[VALUE._col7], Column[VALUE._col8], Column[VALUE._col9]], 1=[Column[KEY.reducesinkkey0], Column[VALUE._col0]]}
2015-04-07 18:20:29,248 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 68 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,248 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 68 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey0=Column[_col1], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,248 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 66 newExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col4], Column[VALUE._col5], Column[VALUE._col8], Column[VALUE._col9]], 1=[]}
2015-04-07 18:20:29,249 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 65 key:[Column[_col0]]
2015-04-07 18:20:29,249 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 65 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,249 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 65 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,249 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 70 key:[Column[_col0]]
2015-04-07 18:20:29,249 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 70 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,249 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 70 newColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,249 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 75 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,250 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 75 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,250 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 80 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,250 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 80 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,250 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 109 key:[Column[_col2]]
2015-04-07 18:20:29,250 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 109 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7]}
2015-04-07 18:20:29,250 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 109 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,251 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 107 oldExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey1], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[KEY.reducesinkkey0], Column[KEY.reducesinkkey1], Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,251 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 109 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,251 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 109 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,251 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 107 newExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,251 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 111 key:[Column[_col0]]
2015-04-07 18:20:29,251 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 111 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,252 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 111 newColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,252 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 116 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,252 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 116 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,252 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 19 key:[Column[_col0]]
2015-04-07 18:20:29,252 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 19 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7]}
2015-04-07 18:20:29,253 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 19 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,253 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 17 oldExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[KEY.reducesinkkey1], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[KEY.reducesinkkey0], Column[KEY.reducesinkkey1], Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,253 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 19 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,253 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 19 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,253 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 17 newExprs: {0=[Column[VALUE._col0], Column[KEY.reducesinkkey0], Column[VALUE._col1], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,253 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 21 key:[Column[_col0]]
2015-04-07 18:20:29,254 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 21 oldColExprMap: {VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,254 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 21 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,254 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 26 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,254 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 26 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,254 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 63 key:[Column[_col0]]
2015-04-07 18:20:29,254 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 63 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col3=Column[_col4], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9], VALUE._col7=Column[_col8], VALUE._col6=Column[_col7]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 63 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(973)) - JOIN 61 oldExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[KEY.reducesinkkey1], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[KEY.reducesinkkey0], Column[KEY.reducesinkkey1], Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 63 oldColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 63 newColExprMap: {VALUE._col5=Column[_col6], VALUE._col4=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], VALUE._col0=Column[_col1], KEY.reducesinkkey0=Column[_col0], VALUE._col9=Column[_col10], VALUE._col8=Column[_col9]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneJoinOperator(1078)) - JOIN 61 newExprs: {0=[Column[VALUE._col0], Column[VALUE._col1], Column[KEY.reducesinkkey0], Column[VALUE._col2], Column[VALUE._col3], Column[VALUE._col4]], 1=[Column[VALUE._col0], Column[VALUE._col1]]}
2015-04-07 18:20:29,255 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 65 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,256 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 65 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,256 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 105 key:[Column[_col1], Column[_col4]]
2015-04-07 18:20:29,256 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 105 oldColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1]}
2015-04-07 18:20:29,256 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 105 newColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1]}
2015-04-07 18:20:29,256 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 106 key:[Column[_col0], Column[_col1]]
2015-04-07 18:20:29,257 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 106 oldColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,257 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 106 newColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,257 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 15 key:[Column[_col1], Column[_col4]]
2015-04-07 18:20:29,257 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 15 oldColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1]}
2015-04-07 18:20:29,257 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 15 newColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col2], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col1]}
2015-04-07 18:20:29,258 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 16 key:[Column[_col0], Column[_col1]]
2015-04-07 18:20:29,260 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 16 oldColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,260 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 16 newColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,260 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 21 oldColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,260 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 21 newColExprMap: {KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,261 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 59 key:[Column[_col2], Column[_col4]]
2015-04-07 18:20:29,261 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 59 oldColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2]}
2015-04-07 18:20:29,261 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 59 newColExprMap: {VALUE._col4=Column[_col6], VALUE._col3=Column[_col5], VALUE._col2=Column[_col3], VALUE._col1=Column[_col1], KEY.reducesinkkey1=Column[_col4], VALUE._col0=Column[_col0], KEY.reducesinkkey0=Column[_col2]}
2015-04-07 18:20:29,261 DEBUG [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:process(522)) - Reduce Sink Operator 60 key:[Column[_col0], Column[_col1]]
2015-04-07 18:20:29,261 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(815)) - RS 60 oldColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,262 INFO [main]: optimizer.ColumnPrunerProcFactory (ColumnPrunerProcFactory.java:pruneReduceSinkOperator(864)) - RS 60 newColExprMap: {VALUE._col1=Column[_col3], KEY.reducesinkkey1=Column[_col1], VALUE._col0=Column[_col2], KEY.reducesinkkey0=Column[_col0]}
2015-04-07 18:20:29,328 DEBUG [main]: optimizer.IdentityProjectRemover (IdentityProjectRemover.java:process(104)) - Identity project remover optimization removed : SEL[134]
2015-04-07 18:20:29,338 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:analyzeInternal(10060)) - After logical optimization
TS[0]-FIL[201]-SEL[1]-RS[15]-JOIN[17]-RS[19]-JOIN[22]-RS[24]-JOIN[27]-RS[29]-JOIN[32]-RS[34]-JOIN[37]-SEL[38]-GBY[40]-RS[41]-GBY[42]-SEL[43]-UNION[88]-GBY[136]-RS[137]-GBY[138]-SEL[139]-RS[140]-SEL[141]-LIM[142]-FS[143]
TS[2]-FIL[202]-SEL[3]-RS[16]-JOIN[17]
TS[4]-FIL[203]-SEL[6]-RS[21]-JOIN[22]
TS[7]-FIL[204]-SEL[9]-RS[26]-JOIN[27]
TS[10]-FIL[205]-SEL[12]-RS[31]-JOIN[32]
TS[13]-FIL[206]-SEL[14]-RS[36]-JOIN[37]
TS[44]-FIL[207]-SEL[45]-RS[59]-JOIN[61]-RS[63]-JOIN[66]-RS[68]-JOIN[71]-RS[73]-JOIN[76]-RS[78]-JOIN[81]-SEL[82]-GBY[84]-RS[85]-GBY[86]-SEL[87]-UNION[88]
TS[46]-FIL[208]-SEL[47]-RS[60]-JOIN[61]
TS[48]-FIL[209]-SEL[50]-RS[65]-JOIN[66]
TS[51]-FIL[210]-SEL[52]-RS[70]-JOIN[71]
TS[53]-FIL[211]-SEL[55]-RS[75]-JOIN[76]
TS[56]-FIL[212]-SEL[58]-RS[80]-JOIN[81]
TS[90]-FIL[213]-SEL[91]-RS[105]-JOIN[107]-RS[109]-JOIN[112]-RS[114]-JOIN[117]-RS[119]-JOIN[122]-RS[124]-JOIN[127]-SEL[128]-GBY[130]-RS[131]-GBY[132]-SEL[133]-UNION[88]
TS[92]-FIL[214]-SEL[93]-RS[106]-JOIN[107]
TS[94]-FIL[215]-SEL[95]-RS[111]-JOIN[112]
TS[96]-FIL[216]-SEL[98]-RS[116]-JOIN[117]
TS[99]-FIL[217]-SEL[101]-RS[121]-JOIN[122]
TS[102]-FIL[218]-SEL[104]-RS[126]-JOIN[127]
2015-04-07 18:20:29,340 DEBUG [main]: security.Groups (Groups.java:getGroups(165)) - Returning cached groups for 'mmokhtar'
2015-04-07 18:20:29,340 DEBUG [main]: security.Groups (Groups.java:getGroups(165)) - Returning cached groups for 'mmokhtar'
2015-04-07 18:20:29,357 INFO [main]: sqlstd.SQLStdHiveAccessController (SQLStdHiveAccessController.java:(95)) - Created SQLStdHiveAccessController for session context : HiveAuthzSessionContext [sessionString=10249729-66c5-448f-b3b1-876ff866c894, clientType=HIVECLI]
2015-04-07 18:20:29,359 INFO [main]: hive.metastore (HiveMetaStoreClient.java:isCompatibleWith(289)) - Mestastore configuration hive.metastore.filter.hook changed from org.apache.hadoop.hive.metastore.DefaultMetaStoreFilterHookImpl to org.apache.hadoop.hive.ql.security.authorization.plugin.AuthorizationMetaStoreFilterHook
2015-04-07 18:20:29,360 DEBUG [main]: metadata.Hive (Hive.java:get(223)) - Creating new db. db = org.apache.hadoop.hive.ql.metadata.Hive@5cff388f, needsRefresh = true, db.isCurrentUserOwner = true
2015-04-07 18:20:29,360 DEBUG [main]: metadata.Hive (Hive.java:close(284)) - Closing current thread's connection to Hive Metastore.
2015-04-07 18:20:29,433 INFO [main]: hive.metastore (HiveMetaStoreClient.java:open(374)) - Trying to connect to metastore with URI thrift://cn105-10.l42scl.hortonworks.com:9083
2015-04-07 18:20:29,433 DEBUG [main]: security.Groups (Groups.java:getGroups(165)) - Returning cached groups for 'mmokhtar'
2015-04-07 18:20:29,434 INFO [main]: hive.metastore (HiveMetaStoreClient.java:open(470)) - Connected to metastore.
2015-04-07 18:20:29,443 DEBUG [main]: session.SessionState (SessionState.java:setupAuth(747)) - Session is using authorization class class org.apache.hadoop.hive.ql.security.authorization.plugin.HiveAuthorizerImpl
2015-04-07 18:20:29,449 INFO [main]: Configuration.deprecation (Configuration.java:warnOnceIfDeprecated(1049)) - mapred.input.dir.recursive is deprecated. Instead, use mapreduce.input.fileinputformat.input.dir.recursive
2015-04-07 18:20:29,455 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[0]
2015-04-07 18:20:29,455 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((((((ss_sold_date_sk is not null and (ss_sold_date_sk) IN (RS[21])) and ss_item_sk is not null) and (ss_item_sk) IN (RS[26])) and ss_promo_sk is not null) and (ss_promo_sk) IN (RS[31])) and ss_store_sk is not null) and (ss_store_sk) IN (RS[36])) (type: boolean)
2015-04-07 18:20:29,455 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[0]
2015-04-07 18:20:29,457 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ss_sold_date_sk is not a partition column
2015-04-07 18:20:29,457 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ss_item_sk is not a partition column
2015-04-07 18:20:29,457 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ss_promo_sk is not a partition column
2015-04-07 18:20:29,457 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ss_store_sk is not a partition column
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[2]
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((((sr_item_sk) IN (RS[15]) and (sr_ticket_number) IN (RS[15])) and sr_item_sk is not null) and (sr_item_sk) IN (RS[26])) (type: boolean)
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[2]
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column sr_item_sk is not a partition column
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column sr_ticket_number is not a partition column
2015-04-07 18:20:29,458 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column sr_item_sk is not a partition column
2015-04-07 18:20:29,459 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[4]
2015-04-07 18:20:29,459 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[19])) (type: boolean)
2015-04-07 18:20:29,459 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[4]
2015-04-07 18:20:29,459 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column d_date_sk is not a partition column
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[7]
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[24])) (type: boolean)
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[7]
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column i_item_sk is not a partition column
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[10]
2015-04-07 18:20:29,460 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[29])) (type: boolean)
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[10]
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column p_promo_sk is not a partition column
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[13]
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (s_store_sk is not null and (s_store_sk) IN (RS[34])) (type: boolean)
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[13]
2015-04-07 18:20:29,461 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column s_store_sk is not a partition column
2015-04-07 18:20:29,462 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[44]
2015-04-07 18:20:29,462 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((((((cs_sold_date_sk is not null and (cs_sold_date_sk) IN (RS[65])) and cs_catalog_page_sk is not null) and (cs_catalog_page_sk) IN (RS[70])) and cs_item_sk is not null) and (cs_item_sk) IN (RS[75])) and cs_promo_sk is not null) and (cs_promo_sk) IN (RS[80])) (type: boolean)
2015-04-07 18:20:29,462 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[44]
2015-04-07 18:20:29,464 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cs_sold_date_sk is not a partition column
2015-04-07 18:20:29,464 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cs_catalog_page_sk is not a partition column
2015-04-07 18:20:29,464 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cs_item_sk is not a partition column
2015-04-07 18:20:29,465 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cs_promo_sk is not a partition column
2015-04-07 18:20:29,465 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[46]
2015-04-07 18:20:29,465 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((((cr_item_sk) IN (RS[59]) and (cr_order_number) IN (RS[59])) and cr_item_sk is not null) and (cr_item_sk) IN (RS[75])) (type: boolean)
2015-04-07 18:20:29,465 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[46]
2015-04-07 18:20:29,465 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cr_item_sk is not a partition column
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cr_order_number is not a partition column
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cr_item_sk is not a partition column
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[48]
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[63])) (type: boolean)
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[48]
2015-04-07 18:20:29,466 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column d_date_sk is not a partition column
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[51]
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (cp_catalog_page_sk is not null and (cp_catalog_page_sk) IN (RS[68])) (type: boolean)
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[51]
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column cp_catalog_page_sk is not a partition column
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[53]
2015-04-07 18:20:29,467 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[73])) (type: boolean)
2015-04-07 18:20:29,468 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[53]
2015-04-07 18:20:29,468 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column i_item_sk is not a partition column
2015-04-07 18:20:29,468 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[56]
2015-04-07 18:20:29,468 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[78])) (type: boolean)
2015-04-07 18:20:29,468 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[56]
2015-04-07 18:20:29,469 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column p_promo_sk is not a partition column
2015-04-07 18:20:29,469 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[90]
2015-04-07 18:20:29,469 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((((((ws_web_site_sk is not null and (ws_web_site_sk) IN (RS[111])) and ws_sold_date_sk is not null) and (ws_sold_date_sk) IN (RS[116])) and ws_item_sk is not null) and (ws_item_sk) IN (RS[121])) and ws_promo_sk is not null) and (ws_promo_sk) IN (RS[126])) (type: boolean)
2015-04-07 18:20:29,469 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[90]
2015-04-07 18:20:29,469 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ws_web_site_sk is not a partition column
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ws_sold_date_sk is not a partition column
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ws_item_sk is not a partition column
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column ws_promo_sk is not a partition column
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[92]
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((((wr_item_sk) IN (RS[105]) and (wr_order_number) IN (RS[105])) and wr_item_sk is not null) and (wr_item_sk) IN (RS[121])) (type: boolean)
2015-04-07 18:20:29,470 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[92]
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column wr_item_sk is not a partition column
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column wr_order_number is not a partition column
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column wr_item_sk is not a partition column
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[94]
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (web_site_sk is not null and (web_site_sk) IN (RS[109])) (type: boolean)
2015-04-07 18:20:29,471 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[94]
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column web_site_sk is not a partition column
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[96]
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: ((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and (d_date_sk) IN (RS[114])) (type: boolean)
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[96]
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column d_date_sk is not a partition column
2015-04-07 18:20:29,472 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[99]
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((i_current_price > 50.0) and i_item_sk is not null) and (i_item_sk) IN (RS[119])) (type: boolean)
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[99]
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column i_item_sk is not a partition column
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(176)) - Parent: TS[102]
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(177)) - Filter: (((p_channel_tv = 'N') and p_promo_sk is not null) and (p_promo_sk) IN (RS[124])) (type: boolean)
2015-04-07 18:20:29,473 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(178)) - TableScan: TS[102]
2015-04-07 18:20:29,474 DEBUG [main]: optimizer.DynamicPartitionPruningOptimization (DynamicPartitionPruningOptimization.java:process(211)) - Column p_promo_sk is not a partition column
2015-04-07 18:20:29,477 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[0] with rs:(ss_sold_date_sk: int|{store_sales}ss_sold_date_sk,ss_sold_time_sk: int|{store_sales}ss_sold_time_sk,ss_item_sk: int|{store_sales}ss_item_sk,ss_customer_sk: int|{store_sales}ss_customer_sk,ss_cdemo_sk: int|{store_sales}ss_cdemo_sk,ss_hdemo_sk: int|{store_sales}ss_hdemo_sk,ss_addr_sk: int|{store_sales}ss_addr_sk,ss_store_sk: int|{store_sales}ss_store_sk,ss_promo_sk: int|{store_sales}ss_promo_sk,ss_ticket_number: int|{store_sales}ss_ticket_number,ss_quantity: int|{store_sales}ss_quantity,ss_wholesale_cost: float|{store_sales}ss_wholesale_cost,ss_list_price: float|{store_sales}ss_list_price,ss_sales_price: float|{store_sales}ss_sales_price,ss_ext_discount_amt: float|{store_sales}ss_ext_discount_amt,ss_ext_sales_price: float|{store_sales}ss_ext_sales_price,ss_ext_wholesale_cost: float|{store_sales}ss_ext_wholesale_cost,ss_ext_list_price: float|{store_sales}ss_ext_list_price,ss_ext_tax: float|{store_sales}ss_ext_tax,ss_coupon_amt: float|{store_sales}ss_coupon_amt,ss_net_paid: float|{store_sales}ss_net_paid,ss_net_paid_inc_tax: float|{store_sales}ss_net_paid_inc_tax,ss_net_profit: float|{store_sales}ss_net_profit,ss_sold_date: string|{store_sales}ss_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{store_sales}input__file__name,ROW__ID: struct|{store_sales}row__id)
2015-04-07 18:20:29,477 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[0]
2015-04-07 18:20:29,477 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[ss_sold_date_sk])
2015-04-07 18:20:29,478 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk]))
2015-04-07 18:20:29,478 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk]))
2015-04-07 18:20:29,478 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk])), GenericUDFOPNotNull(Column[ss_store_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk])), GenericUDFOPNotNull(Column[ss_store_sk]))
2015-04-07 18:20:29,478 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[2] with rs:(sr_returned_date_sk: int|{store_returns}sr_returned_date_sk,sr_return_time_sk: int|{store_returns}sr_return_time_sk,sr_item_sk: int|{store_returns}sr_item_sk,sr_customer_sk: int|{store_returns}sr_customer_sk,sr_cdemo_sk: int|{store_returns}sr_cdemo_sk,sr_hdemo_sk: int|{store_returns}sr_hdemo_sk,sr_addr_sk: int|{store_returns}sr_addr_sk,sr_store_sk: int|{store_returns}sr_store_sk,sr_reason_sk: int|{store_returns}sr_reason_sk,sr_ticket_number: int|{store_returns}sr_ticket_number,sr_return_quantity: int|{store_returns}sr_return_quantity,sr_return_amt: float|{store_returns}sr_return_amt,sr_return_tax: float|{store_returns}sr_return_tax,sr_return_amt_inc_tax: float|{store_returns}sr_return_amt_inc_tax,sr_fee: float|{store_returns}sr_fee,sr_return_ship_cost: float|{store_returns}sr_return_ship_cost,sr_refunded_cash: float|{store_returns}sr_refunded_cash,sr_reversed_charge: float|{store_returns}sr_reversed_charge,sr_store_credit: float|{store_returns}sr_store_credit,sr_net_loss: float|{store_returns}sr_net_loss,sr_returned_date: string|{store_returns}sr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{store_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{store_returns}input__file__name,ROW__ID: struct|{store_returns}row__id)
2015-04-07 18:20:29,478 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[2]
2015-04-07 18:20:29,479 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,479 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,479 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[sr_item_sk])) -> GenericUDFOPNotNull(Column[sr_item_sk])
2015-04-07 18:20:29,479 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[sr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[sr_item_sk])
2015-04-07 18:20:29,479 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[4] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,480 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[4]
2015-04-07 18:20:29,480 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,480 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[7] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,480 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[7]
2015-04-07 18:20:29,481 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,481 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[10] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,481 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[10]
2015-04-07 18:20:29,481 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,481 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[13] with rs:(s_store_sk: int|{store}s_store_sk,s_store_id: string|{store}s_store_id,s_rec_start_date: string|{store}s_rec_start_date,s_rec_end_date: string|{store}s_rec_end_date,s_closed_date_sk: int|{store}s_closed_date_sk,s_store_name: string|{store}s_store_name,s_number_employees: int|{store}s_number_employees,s_floor_space: int|{store}s_floor_space,s_hours: string|{store}s_hours,s_manager: string|{store}s_manager,s_market_id: int|{store}s_market_id,s_geography_class: string|{store}s_geography_class,s_market_desc: string|{store}s_market_desc,s_market_manager: string|{store}s_market_manager,s_division_id: int|{store}s_division_id,s_division_name: string|{store}s_division_name,s_company_id: int|{store}s_company_id,s_company_name: string|{store}s_company_name,s_street_number: string|{store}s_street_number,s_street_name: string|{store}s_street_name,s_street_type: string|{store}s_street_type,s_suite_number: string|{store}s_suite_number,s_city: string|{store}s_city,s_county: string|{store}s_county,s_state: string|{store}s_state,s_zip: string|{store}s_zip,s_country: string|{store}s_country,s_gmt_offset: float|{store}s_gmt_offset,s_tax_precentage: float|{store}s_tax_precentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{store}block__offset__inside__file,INPUT__FILE__NAME: string|{store}input__file__name,ROW__ID: struct|{store}row__id)
2015-04-07 18:20:29,482 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[13]
2015-04-07 18:20:29,482 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[s_store_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[s_store_sk])
2015-04-07 18:20:29,482 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[44] with rs:(cs_sold_date_sk: int|{catalog_sales}cs_sold_date_sk,cs_sold_time_sk: int|{catalog_sales}cs_sold_time_sk,cs_ship_date_sk: int|{catalog_sales}cs_ship_date_sk,cs_bill_customer_sk: int|{catalog_sales}cs_bill_customer_sk,cs_bill_cdemo_sk: int|{catalog_sales}cs_bill_cdemo_sk,cs_bill_hdemo_sk: int|{catalog_sales}cs_bill_hdemo_sk,cs_bill_addr_sk: int|{catalog_sales}cs_bill_addr_sk,cs_ship_customer_sk: int|{catalog_sales}cs_ship_customer_sk,cs_ship_cdemo_sk: int|{catalog_sales}cs_ship_cdemo_sk,cs_ship_hdemo_sk: int|{catalog_sales}cs_ship_hdemo_sk,cs_ship_addr_sk: int|{catalog_sales}cs_ship_addr_sk,cs_call_center_sk: int|{catalog_sales}cs_call_center_sk,cs_catalog_page_sk: int|{catalog_sales}cs_catalog_page_sk,cs_ship_mode_sk: int|{catalog_sales}cs_ship_mode_sk,cs_warehouse_sk: int|{catalog_sales}cs_warehouse_sk,cs_item_sk: int|{catalog_sales}cs_item_sk,cs_promo_sk: int|{catalog_sales}cs_promo_sk,cs_order_number: int|{catalog_sales}cs_order_number,cs_quantity: int|{catalog_sales}cs_quantity,cs_wholesale_cost: float|{catalog_sales}cs_wholesale_cost,cs_list_price: float|{catalog_sales}cs_list_price,cs_sales_price: float|{catalog_sales}cs_sales_price,cs_ext_discount_amt: float|{catalog_sales}cs_ext_discount_amt,cs_ext_sales_price: float|{catalog_sales}cs_ext_sales_price,cs_ext_wholesale_cost: float|{catalog_sales}cs_ext_wholesale_cost,cs_ext_list_price: float|{catalog_sales}cs_ext_list_price,cs_ext_tax: float|{catalog_sales}cs_ext_tax,cs_coupon_amt: float|{catalog_sales}cs_coupon_amt,cs_ext_ship_cost: float|{catalog_sales}cs_ext_ship_cost,cs_net_paid: float|{catalog_sales}cs_net_paid,cs_net_paid_inc_tax: float|{catalog_sales}cs_net_paid_inc_tax,cs_net_paid_inc_ship: float|{catalog_sales}cs_net_paid_inc_ship,cs_net_paid_inc_ship_tax: float|{catalog_sales}cs_net_paid_inc_ship_tax,cs_net_profit: float|{catalog_sales}cs_net_profit,cs_sold_date: string|{catalog_sales}cs_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_sales}input__file__name,ROW__ID: struct|{catalog_sales}row__id)
2015-04-07 18:20:29,482 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[44]
2015-04-07 18:20:29,482 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[cs_sold_date_sk])
2015-04-07 18:20:29,483 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk]))
2015-04-07 18:20:29,483 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk]))
2015-04-07 18:20:29,483 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk])), GenericUDFOPNotNull(Column[cs_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk])), GenericUDFOPNotNull(Column[cs_promo_sk]))
2015-04-07 18:20:29,483 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[46] with rs:(cr_returned_date_sk: int|{catalog_returns}cr_returned_date_sk,cr_returned_time_sk: int|{catalog_returns}cr_returned_time_sk,cr_item_sk: int|{catalog_returns}cr_item_sk,cr_refunded_customer_sk: int|{catalog_returns}cr_refunded_customer_sk,cr_refunded_cdemo_sk: int|{catalog_returns}cr_refunded_cdemo_sk,cr_refunded_hdemo_sk: int|{catalog_returns}cr_refunded_hdemo_sk,cr_refunded_addr_sk: int|{catalog_returns}cr_refunded_addr_sk,cr_returning_customer_sk: int|{catalog_returns}cr_returning_customer_sk,cr_returning_cdemo_sk: int|{catalog_returns}cr_returning_cdemo_sk,cr_returning_hdemo_sk: int|{catalog_returns}cr_returning_hdemo_sk,cr_returning_addr_sk: int|{catalog_returns}cr_returning_addr_sk,cr_call_center_sk: int|{catalog_returns}cr_call_center_sk,cr_catalog_page_sk: int|{catalog_returns}cr_catalog_page_sk,cr_ship_mode_sk: int|{catalog_returns}cr_ship_mode_sk,cr_warehouse_sk: int|{catalog_returns}cr_warehouse_sk,cr_reason_sk: int|{catalog_returns}cr_reason_sk,cr_order_number: int|{catalog_returns}cr_order_number,cr_return_quantity: int|{catalog_returns}cr_return_quantity,cr_return_amount: float|{catalog_returns}cr_return_amount,cr_return_tax: float|{catalog_returns}cr_return_tax,cr_return_amt_inc_tax: float|{catalog_returns}cr_return_amt_inc_tax,cr_fee: float|{catalog_returns}cr_fee,cr_return_ship_cost: float|{catalog_returns}cr_return_ship_cost,cr_refunded_cash: float|{catalog_returns}cr_refunded_cash,cr_reversed_charge: float|{catalog_returns}cr_reversed_charge,cr_store_credit: float|{catalog_returns}cr_store_credit,cr_net_loss: float|{catalog_returns}cr_net_loss,cr_returned_date: string|{catalog_returns}cr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_returns}input__file__name,ROW__ID: struct|{catalog_returns}row__id)
2015-04-07 18:20:29,483 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[46]
2015-04-07 18:20:29,484 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,484 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,484 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[cr_item_sk])) -> GenericUDFOPNotNull(Column[cr_item_sk])
2015-04-07 18:20:29,484 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[cr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[cr_item_sk])
2015-04-07 18:20:29,484 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[48] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[48]
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[51] with rs:(cp_catalog_page_sk: int|{catalog_page}cp_catalog_page_sk,cp_catalog_page_id: string|{catalog_page}cp_catalog_page_id,cp_start_date_sk: int|{catalog_page}cp_start_date_sk,cp_end_date_sk: int|{catalog_page}cp_end_date_sk,cp_department: string|{catalog_page}cp_department,cp_catalog_number: int|{catalog_page}cp_catalog_number,cp_catalog_page_number: int|{catalog_page}cp_catalog_page_number,cp_description: string|{catalog_page}cp_description,cp_type: string|{catalog_page}cp_type,BLOCK__OFFSET__INSIDE__FILE: bigint|{catalog_page}block__offset__inside__file,INPUT__FILE__NAME: string|{catalog_page}input__file__name,ROW__ID: struct|{catalog_page}row__id)
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[51]
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[cp_catalog_page_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[cp_catalog_page_sk])
2015-04-07 18:20:29,485 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[53] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,486 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[53]
2015-04-07 18:20:29,486 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,486 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[56] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,486 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[56]
2015-04-07 18:20:29,486 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[90] with rs:(ws_sold_date_sk: int|{web_sales}ws_sold_date_sk,ws_sold_time_sk: int|{web_sales}ws_sold_time_sk,ws_ship_date_sk: int|{web_sales}ws_ship_date_sk,ws_item_sk: int|{web_sales}ws_item_sk,ws_bill_customer_sk: int|{web_sales}ws_bill_customer_sk,ws_bill_cdemo_sk: int|{web_sales}ws_bill_cdemo_sk,ws_bill_hdemo_sk: int|{web_sales}ws_bill_hdemo_sk,ws_bill_addr_sk: int|{web_sales}ws_bill_addr_sk,ws_ship_customer_sk: int|{web_sales}ws_ship_customer_sk,ws_ship_cdemo_sk: int|{web_sales}ws_ship_cdemo_sk,ws_ship_hdemo_sk: int|{web_sales}ws_ship_hdemo_sk,ws_ship_addr_sk: int|{web_sales}ws_ship_addr_sk,ws_web_page_sk: int|{web_sales}ws_web_page_sk,ws_web_site_sk: int|{web_sales}ws_web_site_sk,ws_ship_mode_sk: int|{web_sales}ws_ship_mode_sk,ws_warehouse_sk: int|{web_sales}ws_warehouse_sk,ws_promo_sk: int|{web_sales}ws_promo_sk,ws_order_number: int|{web_sales}ws_order_number,ws_quantity: int|{web_sales}ws_quantity,ws_wholesale_cost: float|{web_sales}ws_wholesale_cost,ws_list_price: float|{web_sales}ws_list_price,ws_sales_price: float|{web_sales}ws_sales_price,ws_ext_discount_amt: float|{web_sales}ws_ext_discount_amt,ws_ext_sales_price: float|{web_sales}ws_ext_sales_price,ws_ext_wholesale_cost: float|{web_sales}ws_ext_wholesale_cost,ws_ext_list_price: float|{web_sales}ws_ext_list_price,ws_ext_tax: float|{web_sales}ws_ext_tax,ws_coupon_amt: float|{web_sales}ws_coupon_amt,ws_ext_ship_cost: float|{web_sales}ws_ext_ship_cost,ws_net_paid: float|{web_sales}ws_net_paid,ws_net_paid_inc_tax: float|{web_sales}ws_net_paid_inc_tax,ws_net_paid_inc_ship: float|{web_sales}ws_net_paid_inc_ship,ws_net_paid_inc_ship_tax: float|{web_sales}ws_net_paid_inc_ship_tax,ws_net_profit: float|{web_sales}ws_net_profit,ws_sold_date: string|{web_sales}ws_sold_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_sales}block__offset__inside__file,INPUT__FILE__NAME: string|{web_sales}input__file__name,ROW__ID: struct|{web_sales}row__id)
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[90]
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[ws_web_site_sk])
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk]))
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk]))
2015-04-07 18:20:29,487 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk])), GenericUDFOPNotNull(Column[ws_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk])), GenericUDFOPNotNull(Column[ws_promo_sk]))
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[92] with rs:(wr_returned_date_sk: int|{web_returns}wr_returned_date_sk,wr_returned_time_sk: int|{web_returns}wr_returned_time_sk,wr_item_sk: int|{web_returns}wr_item_sk,wr_refunded_customer_sk: int|{web_returns}wr_refunded_customer_sk,wr_refunded_cdemo_sk: int|{web_returns}wr_refunded_cdemo_sk,wr_refunded_hdemo_sk: int|{web_returns}wr_refunded_hdemo_sk,wr_refunded_addr_sk: int|{web_returns}wr_refunded_addr_sk,wr_returning_customer_sk: int|{web_returns}wr_returning_customer_sk,wr_returning_cdemo_sk: int|{web_returns}wr_returning_cdemo_sk,wr_returning_hdemo_sk: int|{web_returns}wr_returning_hdemo_sk,wr_returning_addr_sk: int|{web_returns}wr_returning_addr_sk,wr_web_page_sk: int|{web_returns}wr_web_page_sk,wr_reason_sk: int|{web_returns}wr_reason_sk,wr_order_number: int|{web_returns}wr_order_number,wr_return_quantity: int|{web_returns}wr_return_quantity,wr_return_amt: float|{web_returns}wr_return_amt,wr_return_tax: float|{web_returns}wr_return_tax,wr_return_amt_inc_tax: float|{web_returns}wr_return_amt_inc_tax,wr_fee: float|{web_returns}wr_fee,wr_return_ship_cost: float|{web_returns}wr_return_ship_cost,wr_refunded_cash: float|{web_returns}wr_refunded_cash,wr_reversed_charge: float|{web_returns}wr_reversed_charge,wr_account_credit: float|{web_returns}wr_account_credit,wr_net_loss: float|{web_returns}wr_net_loss,wr_returned_date: string|{web_returns}wr_returned_date,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_returns}block__offset__inside__file,INPUT__FILE__NAME: string|{web_returns}input__file__name,ROW__ID: struct|{web_returns}row__id)
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[92]
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[wr_item_sk])) -> GenericUDFOPNotNull(Column[wr_item_sk])
2015-04-07 18:20:29,488 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[wr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[wr_item_sk])
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[94] with rs:(web_site_sk: int|{web_site}web_site_sk,web_site_id: string|{web_site}web_site_id,web_rec_start_date: string|{web_site}web_rec_start_date,web_rec_end_date: string|{web_site}web_rec_end_date,web_name: string|{web_site}web_name,web_open_date_sk: int|{web_site}web_open_date_sk,web_close_date_sk: int|{web_site}web_close_date_sk,web_class: string|{web_site}web_class,web_manager: string|{web_site}web_manager,web_mkt_id: int|{web_site}web_mkt_id,web_mkt_class: string|{web_site}web_mkt_class,web_mkt_desc: string|{web_site}web_mkt_desc,web_market_manager: string|{web_site}web_market_manager,web_company_id: int|{web_site}web_company_id,web_company_name: string|{web_site}web_company_name,web_street_number: string|{web_site}web_street_number,web_street_name: string|{web_site}web_street_name,web_street_type: string|{web_site}web_street_type,web_suite_number: string|{web_site}web_suite_number,web_city: string|{web_site}web_city,web_county: string|{web_site}web_county,web_state: string|{web_site}web_state,web_zip: string|{web_site}web_zip,web_country: string|{web_site}web_country,web_gmt_offset: float|{web_site}web_gmt_offset,web_tax_percentage: float|{web_site}web_tax_percentage,BLOCK__OFFSET__INSIDE__FILE: bigint|{web_site}block__offset__inside__file,INPUT__FILE__NAME: string|{web_site}input__file__name,ROW__ID: struct|{web_site}row__id)
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[94]
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[web_site_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[web_site_sk])
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[96] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date_id: string|{date_dim}d_date_id,d_date: string|{date_dim}d_date,d_month_seq: int|{date_dim}d_month_seq,d_week_seq: int|{date_dim}d_week_seq,d_quarter_seq: int|{date_dim}d_quarter_seq,d_year: int|{date_dim}d_year,d_dow: int|{date_dim}d_dow,d_moy: int|{date_dim}d_moy,d_dom: int|{date_dim}d_dom,d_qoy: int|{date_dim}d_qoy,d_fy_year: int|{date_dim}d_fy_year,d_fy_quarter_seq: int|{date_dim}d_fy_quarter_seq,d_fy_week_seq: int|{date_dim}d_fy_week_seq,d_day_name: string|{date_dim}d_day_name,d_quarter_name: string|{date_dim}d_quarter_name,d_holiday: string|{date_dim}d_holiday,d_weekend: string|{date_dim}d_weekend,d_following_holiday: string|{date_dim}d_following_holiday,d_first_dom: int|{date_dim}d_first_dom,d_last_dom: int|{date_dim}d_last_dom,d_same_day_ly: int|{date_dim}d_same_day_ly,d_same_day_lq: int|{date_dim}d_same_day_lq,d_current_day: string|{date_dim}d_current_day,d_current_week: string|{date_dim}d_current_week,d_current_month: string|{date_dim}d_current_month,d_current_quarter: string|{date_dim}d_current_quarter,d_current_year: string|{date_dim}d_current_year,BLOCK__OFFSET__INSIDE__FILE: bigint|{date_dim}block__offset__inside__file,INPUT__FILE__NAME: string|{date_dim}input__file__name,ROW__ID: struct|{date_dim}row__id)
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[96]
2015-04-07 18:20:29,489 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[99] with rs:(i_item_sk: int|{item}i_item_sk,i_item_id: string|{item}i_item_id,i_rec_start_date: string|{item}i_rec_start_date,i_rec_end_date: string|{item}i_rec_end_date,i_item_desc: string|{item}i_item_desc,i_current_price: float|{item}i_current_price,i_wholesale_cost: float|{item}i_wholesale_cost,i_brand_id: int|{item}i_brand_id,i_brand: string|{item}i_brand,i_class_id: int|{item}i_class_id,i_class: string|{item}i_class,i_category_id: int|{item}i_category_id,i_category: string|{item}i_category,i_manufact_id: int|{item}i_manufact_id,i_manufact: string|{item}i_manufact,i_size: string|{item}i_size,i_formulation: string|{item}i_formulation,i_color: string|{item}i_color,i_units: string|{item}i_units,i_container: string|{item}i_container,i_manager_id: int|{item}i_manager_id,i_product_name: string|{item}i_product_name,BLOCK__OFFSET__INSIDE__FILE: bigint|{item}block__offset__inside__file,INPUT__FILE__NAME: string|{item}input__file__name,ROW__ID: struct|{item}row__id)
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[99]
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:TS[102] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_promo_id: string|{promotion}p_promo_id,p_start_date_sk: int|{promotion}p_start_date_sk,p_end_date_sk: int|{promotion}p_end_date_sk,p_item_sk: int|{promotion}p_item_sk,p_cost: float|{promotion}p_cost,p_response_target: int|{promotion}p_response_target,p_promo_name: string|{promotion}p_promo_name,p_channel_dmail: string|{promotion}p_channel_dmail,p_channel_email: string|{promotion}p_channel_email,p_channel_catalog: string|{promotion}p_channel_catalog,p_channel_tv: string|{promotion}p_channel_tv,p_channel_radio: string|{promotion}p_channel_radio,p_channel_press: string|{promotion}p_channel_press,p_channel_event: string|{promotion}p_channel_event,p_channel_demo: string|{promotion}p_channel_demo,p_channel_details: string|{promotion}p_channel_details,p_purpose: string|{promotion}p_purpose,p_discount_active: string|{promotion}p_discount_active,BLOCK__OFFSET__INSIDE__FILE: bigint|{promotion}block__offset__inside__file,INPUT__FILE__NAME: string|{promotion}input__file__name,ROW__ID: struct|{promotion}row__id)
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator TS[102]
2015-04-07 18:20:29,490 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[201] with rs:(ss_sold_date_sk: int|{store_sales}ss_sold_date_sk,ss_item_sk: int|{store_sales}ss_item_sk,ss_store_sk: int|{store_sales}ss_store_sk,ss_promo_sk: int|{store_sales}ss_promo_sk,ss_ticket_number: int|{store_sales}ss_ticket_number,ss_ext_sales_price: float|{store_sales}ss_ext_sales_price,ss_net_profit: float|{store_sales}ss_net_profit)
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[201]
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[201] conditions:((((ss_sold_date_sk is not null and ss_item_sk is not null) and ss_promo_sk is not null) and ss_store_sk is not null) and true)
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk])), GenericUDFOPNotNull(Column[ss_store_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ss_sold_date_sk]), GenericUDFOPNotNull(Column[ss_item_sk])), GenericUDFOPNotNull(Column[ss_promo_sk])), GenericUDFOPNotNull(Column[ss_store_sk]))
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[201] conditions:(((ss_sold_date_sk is not null and ss_item_sk is not null) and ss_promo_sk is not null) and ss_store_sk is not null)
2015-04-07 18:20:29,491 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[202] with rs:(sr_item_sk: int|{store_returns}sr_item_sk,sr_ticket_number: int|{store_returns}sr_ticket_number,sr_return_amt: float|{store_returns}sr_return_amt,sr_net_loss: float|{store_returns}sr_net_loss)
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[202]
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[202] conditions:(((true and true) and sr_item_sk is not null) and true)
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[sr_item_sk])) -> GenericUDFOPNotNull(Column[sr_item_sk])
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[sr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[sr_item_sk])
2015-04-07 18:20:29,492 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[202] conditions:sr_item_sk is not null
2015-04-07 18:20:29,493 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[203] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date: string|{date_dim}d_date)
2015-04-07 18:20:29,493 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[203]
2015-04-07 18:20:29,493 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[203] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and true)
2015-04-07 18:20:29,498 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,498 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[203] conditions:(d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null)
2015-04-07 18:20:29,498 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[204] with rs:(i_item_sk: int|{item}i_item_sk,i_current_price: float|{item}i_current_price)
2015-04-07 18:20:29,498 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[204]
2015-04-07 18:20:29,498 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[204] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and true)
2015-04-07 18:20:29,499 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,499 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[204] conditions:((i_current_price > 50.0) and i_item_sk is not null)
2015-04-07 18:20:29,499 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[205] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_channel_tv: string|{promotion}p_channel_tv)
2015-04-07 18:20:29,499 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[205]
2015-04-07 18:20:29,499 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[205] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and true)
2015-04-07 18:20:29,500 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@21d2c3d4 is identified as a value assignment, propagate it.
2015-04-07 18:20:29,500 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,500 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[205] conditions:((p_channel_tv = 'N') and p_promo_sk is not null)
2015-04-07 18:20:29,500 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[205]
2015-04-07 18:20:29,500 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[206] with rs:(s_store_sk: int|{store}s_store_sk,s_store_id: string|{store}s_store_id)
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[206]
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[206] conditions:(s_store_sk is not null and true)
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[s_store_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[s_store_sk])
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[206] conditions:s_store_sk is not null
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[207] with rs:(cs_sold_date_sk: int|{catalog_sales}cs_sold_date_sk,cs_catalog_page_sk: int|{catalog_sales}cs_catalog_page_sk,cs_item_sk: int|{catalog_sales}cs_item_sk,cs_promo_sk: int|{catalog_sales}cs_promo_sk,cs_order_number: int|{catalog_sales}cs_order_number,cs_ext_sales_price: float|{catalog_sales}cs_ext_sales_price,cs_net_profit: float|{catalog_sales}cs_net_profit)
2015-04-07 18:20:29,501 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[207]
2015-04-07 18:20:29,502 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[207] conditions:((((cs_sold_date_sk is not null and cs_catalog_page_sk is not null) and cs_item_sk is not null) and cs_promo_sk is not null) and true)
2015-04-07 18:20:29,502 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk])), GenericUDFOPNotNull(Column[cs_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[cs_sold_date_sk]), GenericUDFOPNotNull(Column[cs_catalog_page_sk])), GenericUDFOPNotNull(Column[cs_item_sk])), GenericUDFOPNotNull(Column[cs_promo_sk]))
2015-04-07 18:20:29,502 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[207] conditions:(((cs_sold_date_sk is not null and cs_catalog_page_sk is not null) and cs_item_sk is not null) and cs_promo_sk is not null)
2015-04-07 18:20:29,502 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[208] with rs:(cr_item_sk: int|{catalog_returns}cr_item_sk,cr_order_number: int|{catalog_returns}cr_order_number,cr_return_amount: float|{catalog_returns}cr_return_amount,cr_net_loss: float|{catalog_returns}cr_net_loss)
2015-04-07 18:20:29,503 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[208]
2015-04-07 18:20:29,503 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[208] conditions:(((true and true) and cr_item_sk is not null) and true)
2015-04-07 18:20:29,503 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,503 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,503 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[cr_item_sk])) -> GenericUDFOPNotNull(Column[cr_item_sk])
2015-04-07 18:20:29,504 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[cr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[cr_item_sk])
2015-04-07 18:20:29,504 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[208] conditions:cr_item_sk is not null
2015-04-07 18:20:29,504 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[209] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date: string|{date_dim}d_date)
2015-04-07 18:20:29,504 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[209]
2015-04-07 18:20:29,504 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[209] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and true)
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[209] conditions:(d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null)
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[210] with rs:(cp_catalog_page_sk: int|{catalog_page}cp_catalog_page_sk,cp_catalog_page_id: string|{catalog_page}cp_catalog_page_id)
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[210]
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[210] conditions:(cp_catalog_page_sk is not null and true)
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[cp_catalog_page_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[cp_catalog_page_sk])
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[210] conditions:cp_catalog_page_sk is not null
2015-04-07 18:20:29,505 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[211] with rs:(i_item_sk: int|{item}i_item_sk,i_current_price: float|{item}i_current_price)
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[211]
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[211] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and true)
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[211] conditions:((i_current_price > 50.0) and i_item_sk is not null)
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[212] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_channel_tv: string|{promotion}p_channel_tv)
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[212]
2015-04-07 18:20:29,506 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[212] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and true)
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@1436a4a5 is identified as a value assignment, propagate it.
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[212] conditions:((p_channel_tv = 'N') and p_promo_sk is not null)
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[212]
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[213] with rs:(ws_sold_date_sk: int|{web_sales}ws_sold_date_sk,ws_item_sk: int|{web_sales}ws_item_sk,ws_web_site_sk: int|{web_sales}ws_web_site_sk,ws_promo_sk: int|{web_sales}ws_promo_sk,ws_order_number: int|{web_sales}ws_order_number,ws_ext_sales_price: float|{web_sales}ws_ext_sales_price,ws_net_profit: float|{web_sales}ws_net_profit)
2015-04-07 18:20:29,507 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[213]
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[213] conditions:((((ws_web_site_sk is not null and ws_sold_date_sk is not null) and ws_item_sk is not null) and ws_promo_sk is not null) and true)
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk])), GenericUDFOPNotNull(Column[ws_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPNotNull(Column[ws_web_site_sk]), GenericUDFOPNotNull(Column[ws_sold_date_sk])), GenericUDFOPNotNull(Column[ws_item_sk])), GenericUDFOPNotNull(Column[ws_promo_sk]))
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[213] conditions:(((ws_web_site_sk is not null and ws_sold_date_sk is not null) and ws_item_sk is not null) and ws_promo_sk is not null)
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[214] with rs:(wr_item_sk: int|{web_returns}wr_item_sk,wr_order_number: int|{web_returns}wr_order_number,wr_return_amt: float|{web_returns}wr_return_amt,wr_net_loss: float|{web_returns}wr_net_loss)
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[214]
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[214] conditions:(((true and true) and wr_item_sk is not null) and true)
2015-04-07 18:20:29,508 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:evaluateFunction(512)) - org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd([Const boolean true, Const boolean true])=true
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(225)) - Folding expression:GenericUDFOPAnd(Const boolean true, Const boolean true) -> Const boolean true
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[wr_item_sk])) -> GenericUDFOPNotNull(Column[wr_item_sk])
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPAnd(Const boolean true, Const boolean true), GenericUDFOPNotNull(Column[wr_item_sk])), Const boolean true) -> GenericUDFOPNotNull(Column[wr_item_sk])
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[214] conditions:wr_item_sk is not null
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[215] with rs:(web_site_sk: int|{web_site}web_site_sk,web_site_id: string|{web_site}web_site_id)
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[215]
2015-04-07 18:20:29,509 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[215] conditions:(web_site_sk is not null and true)
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPNotNull(Column[web_site_sk]), Const boolean true) -> GenericUDFOPNotNull(Column[web_site_sk])
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[215] conditions:web_site_sk is not null
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[216] with rs:(d_date_sk: int|{date_dim}d_date_sk,d_date: string|{date_dim}d_date)
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[216]
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[216] conditions:((d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null) and true)
2015-04-07 18:20:29,510 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFBetween(Const boolean false, Column[d_date], Const date 1998-08-04, Const date 1998-09-04), GenericUDFOPNotNull(Column[d_date_sk]))
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[216] conditions:(d_date BETWEEN 1998-08-04 AND 1998-09-04 and d_date_sk is not null)
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[217] with rs:(i_item_sk: int|{item}i_item_sk,i_current_price: float|{item}i_current_price)
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[217]
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[217] conditions:(((i_current_price > 50.0) and i_item_sk is not null) and true)
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPGreaterThan(Column[i_current_price], Const float 50.0), GenericUDFOPNotNull(Column[i_item_sk]))
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[217] conditions:((i_current_price > 50.0) and i_item_sk is not null)
2015-04-07 18:20:29,511 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FIL[218] with rs:(p_promo_sk: int|{promotion}p_promo_sk,p_channel_tv: string|{promotion}p_channel_tv)
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FIL[218]
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(596)) - Old filter FIL[218] conditions:(((p_channel_tv = 'N') and p_promo_sk is not null) and true)
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:propagate(331)) - Filter org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPEqual@4d8560cb is identified as a value assignment, propagate it.
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldExpr(232)) - Folding expression:GenericUDFOPAnd(GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk])), Const boolean true) -> GenericUDFOPAnd(GenericUDFOPEqual(Column[p_channel_tv], Const string N), GenericUDFOPNotNull(Column[p_promo_sk]))
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(607)) - New filter FIL[218] conditions:((p_channel_tv = 'N') and p_promo_sk is not null)
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:foldOperator(560)) - Replacing column p_channel_tv: string with constant Const string N in FIL[218]
2015-04-07 18:20:29,512 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[1] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col4: int|{$hdt$_0}ss_ticket_number,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[1]
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ss_sold_date_sk] Column[ss_item_sk] Column[ss_store_sk] Column[ss_promo_sk] Column[ss_ticket_number] Column[ss_ext_sales_price] Column[ss_net_profit])
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[3] with rs:(_col0: int|{$hdt$_1}sr_item_sk,_col1: int|{$hdt$_1}sr_ticket_number,_col2: float|{$hdt$_1}sr_return_amt,_col3: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[3]
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[sr_item_sk] Column[sr_ticket_number] Column[sr_return_amt] Column[sr_net_loss])
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[6] with rs:(_col0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,513 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[6]
2015-04-07 18:20:29,516 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk])
2015-04-07 18:20:29,516 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[9] with rs:(_col0: int|{$hdt$_3}i_item_sk)
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[9]
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk])
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[12] with rs:(_col0: int|{$hdt$_4}p_promo_sk)
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve promotion.p_channel_tv(p_channel_tv) from rs:(_col0: int|{$hdt$_4}p_promo_sk)
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[12]
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk])
2015-04-07 18:20:29,517 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[14] with rs:(_col0: int|{$hdt$_5}s_store_sk,_col1: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[14]
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[s_store_sk] Column[s_store_id])
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[45] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col4: int|{$hdt$_0}cs_order_number,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[45]
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cs_sold_date_sk] Column[cs_catalog_page_sk] Column[cs_item_sk] Column[cs_promo_sk] Column[cs_order_number] Column[cs_ext_sales_price] Column[cs_net_profit])
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[47] with rs:(_col0: int|{$hdt$_1}cr_item_sk,_col1: int|{$hdt$_1}cr_order_number,_col2: float|{$hdt$_1}cr_return_amount,_col3: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,518 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[47]
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cr_item_sk] Column[cr_order_number] Column[cr_return_amount] Column[cr_net_loss])
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[50] with rs:(_col0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[50]
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk])
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[52] with rs:(_col0: int|{$hdt$_3}cp_catalog_page_sk,_col1: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[52]
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[cp_catalog_page_sk] Column[cp_catalog_page_id])
2015-04-07 18:20:29,519 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[55] with rs:(_col0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[55]
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk])
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[58] with rs:(_col0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve promotion.p_channel_tv(p_channel_tv) from rs:(_col0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[58]
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk])
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[91] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col4: int|{$hdt$_0}ws_order_number,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:29,520 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[91]
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[ws_sold_date_sk] Column[ws_item_sk] Column[ws_web_site_sk] Column[ws_promo_sk] Column[ws_order_number] Column[ws_ext_sales_price] Column[ws_net_profit])
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[93] with rs:(_col0: int|{$hdt$_1}wr_item_sk,_col1: int|{$hdt$_1}wr_order_number,_col2: float|{$hdt$_1}wr_return_amt,_col3: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[93]
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[wr_item_sk] Column[wr_order_number] Column[wr_return_amt] Column[wr_net_loss])
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[95] with rs:(_col0: int|{$hdt$_2}web_site_sk,_col1: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[95]
2015-04-07 18:20:29,521 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[web_site_sk] Column[web_site_id])
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[98] with rs:(_col0: int|{$hdt$_3}d_date_sk)
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[98]
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[d_date_sk])
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[101] with rs:(_col0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[101]
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[i_item_sk])
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[104] with rs:(_col0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,522 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(168)) - Can't resolve promotion.p_channel_tv(p_channel_tv) from rs:(_col0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[104]
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[p_promo_sk])
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[15] with rs:(VALUE._col0: int|{$hdt$_0}ss_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ss_ticket_number,VALUE._col3: float|{$hdt$_0}ss_ext_sales_price,VALUE._col4: float|{$hdt$_0}ss_net_profit)
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[15]
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[16] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}sr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}sr_ticket_number,VALUE._col0: float|{$hdt$_1}sr_return_amt,VALUE._col1: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[16]
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,523 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk)
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk)
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[31]
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:29,524 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[59] with rs:(VALUE._col0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col1: int|{$hdt$_0}cs_catalog_page_sk,KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}cs_order_number,VALUE._col3: float|{$hdt$_0}cs_ext_sales_price,VALUE._col4: float|{$hdt$_0}cs_net_profit)
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[59]
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[60] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}cr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}cr_order_number,VALUE._col0: float|{$hdt$_1}cr_return_amount,VALUE._col1: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[60]
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,525 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[80]
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[105] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col1: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,KEY.reducesinkkey1: int|{$hdt$_0}ws_order_number,VALUE._col3: float|{$hdt$_0}ws_ext_sales_price,VALUE._col4: float|{$hdt$_0}ws_net_profit)
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[105]
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[106] with rs:(KEY.reducesinkkey0: int|{$hdt$_1}wr_item_sk,KEY.reducesinkkey1: int|{$hdt$_1}wr_order_number,VALUE._col0: float|{$hdt$_1}wr_return_amt,VALUE._col1: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,526 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[106]
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk)
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,527 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,529 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,529 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[126]
2015-04-07 18:20:29,529 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[17] with rs:(_col0: int|{$hdt$_0}ss_sold_date_sk,_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,529 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[17]
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[19] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ss_sold_date_sk,VALUE._col0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[19]
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[21] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[21]
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[22] with rs:(_col1: int|{$hdt$_0}ss_item_sk,_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[22]
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk)
2015-04-07 18:20:29,530 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[24] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ss_item_sk,VALUE._col1: int|{$hdt$_0}ss_store_sk,VALUE._col2: int|{$hdt$_0}ss_promo_sk,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[24]
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[26] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}i_item_sk)
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[26]
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[27] with rs:(_col2: int|{$hdt$_0}ss_store_sk,_col3: int|{$hdt$_0}ss_promo_sk,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[27]
2015-04-07 18:20:29,531 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk)
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[31]
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[29] with rs:(VALUE._col2: int|{$hdt$_0}ss_store_sk,KEY.reducesinkkey0: int|{$hdt$_0}ss_promo_sk,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[29]
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[31] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}p_promo_sk)
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[31]
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[32] with rs:(_col2: int|{$hdt$_0}ss_store_sk,_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[32]
2015-04-07 18:20:29,532 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[36] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}s_store_sk,VALUE._col0: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[36]
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[61] with rs:(_col0: int|{$hdt$_0}cs_sold_date_sk,_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[61]
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[63] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_sold_date_sk,VALUE._col0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[63]
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[65] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}d_date_sk)
2015-04-07 18:20:29,533 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[65]
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[66] with rs:(_col1: int|{$hdt$_0}cs_catalog_page_sk,_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[66]
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[68] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_catalog_page_sk,VALUE._col1: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss)
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[68]
2015-04-07 18:20:29,534 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[70] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}cp_catalog_page_sk,VALUE._col0: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[70]
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[71] with rs:(_col2: int|{$hdt$_0}cs_item_sk,_col3: int|{$hdt$_0}cs_promo_sk,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[71]
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[73] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_item_sk,VALUE._col2: int|{$hdt$_0}cs_promo_sk,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[73]
2015-04-07 18:20:29,535 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[75] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[75]
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[76] with rs:(_col3: int|{$hdt$_0}cs_promo_sk,_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[76]
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[80] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[80]
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[107] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col2: int|{$hdt$_0}ws_web_site_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,536 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[107]
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[109] with rs:(VALUE._col0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col1: int|{$hdt$_0}ws_item_sk,KEY.reducesinkkey0: int|{$hdt$_0}ws_web_site_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss)
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[109]
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[111] with rs:(KEY.reducesinkkey0: int|{$hdt$_2}web_site_sk,VALUE._col0: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[111]
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[112] with rs:(_col0: int|{$hdt$_0}ws_sold_date_sk,_col1: int|{$hdt$_0}ws_item_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[112]
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk)
2015-04-07 18:20:29,537 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[114] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ws_sold_date_sk,VALUE._col0: int|{$hdt$_0}ws_item_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col11: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[114]
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[116] with rs:(KEY.reducesinkkey0: int|{$hdt$_3}d_date_sk)
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[116]
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[117] with rs:(_col1: int|{$hdt$_0}ws_item_sk,_col3: int|{$hdt$_0}ws_promo_sk,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[117]
2015-04-07 18:20:29,538 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[119] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ws_item_sk,VALUE._col2: int|{$hdt$_0}ws_promo_sk,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col11: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[119]
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[121] with rs:(KEY.reducesinkkey0: int|{$hdt$_4}i_item_sk)
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[121]
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[122] with rs:(_col3: int|{$hdt$_0}ws_promo_sk,_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[122]
2015-04-07 18:20:29,539 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[126] with rs:(KEY.reducesinkkey0: int|{$hdt$_5}p_promo_sk)
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[126]
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[34] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ss_store_sk,VALUE._col4: float|{$hdt$_0}ss_ext_sales_price,VALUE._col5: float|{$hdt$_0}ss_net_profit,VALUE._col8: float|{$hdt$_1}sr_return_amt,VALUE._col9: float|{$hdt$_1}sr_net_loss)
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[34]
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[78] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}cs_promo_sk,VALUE._col4: float|{$hdt$_0}cs_ext_sales_price,VALUE._col5: float|{$hdt$_0}cs_net_profit,VALUE._col8: float|{$hdt$_1}cr_return_amount,VALUE._col9: float|{$hdt$_1}cr_net_loss,VALUE._col13: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[78]
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[124] with rs:(KEY.reducesinkkey0: int|{$hdt$_0}ws_promo_sk,VALUE._col4: float|{$hdt$_0}ws_ext_sales_price,VALUE._col5: float|{$hdt$_0}ws_net_profit,VALUE._col8: float|{$hdt$_1}wr_return_amt,VALUE._col9: float|{$hdt$_1}wr_net_loss,VALUE._col11: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,540 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[124]
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[37] with rs:(_col5: float|{$hdt$_0}ss_ext_sales_price,_col6: float|{$hdt$_0}ss_net_profit,_col9: float|{$hdt$_1}sr_return_amt,_col10: float|{$hdt$_1}sr_net_loss,_col18: string|{$hdt$_5}s_store_id)
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[37]
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[81] with rs:(_col5: float|{$hdt$_0}cs_ext_sales_price,_col6: float|{$hdt$_0}cs_net_profit,_col9: float|{$hdt$_1}cr_return_amount,_col10: float|{$hdt$_1}cr_net_loss,_col14: string|{$hdt$_3}cp_catalog_page_id)
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[81]
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:JOIN[127] with rs:(_col5: float|{$hdt$_0}ws_ext_sales_price,_col6: float|{$hdt$_0}ws_net_profit,_col9: float|{$hdt$_1}wr_return_amt,_col10: float|{$hdt$_1}wr_net_loss,_col12: string|{$hdt$_2}web_site_id)
2015-04-07 18:20:29,541 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator JOIN[127]
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[38] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[38]
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col18] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[82] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[82]
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col14] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,542 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[128] with rs:(_col0: string|{$hdt$_0}$f0,_col1: float|{$hdt$_0}$f1,_col2: float|{$hdt$_0}$f2,_col3: float|{$hdt$_0}$f3)
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[128]
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col12] Column[_col5] GenericUDFCoalesce(Column[_col9], Const int 0) GenericUDFOPMinus(Column[_col6], GenericUDFCoalesce(Column[_col10], Const int 0)))
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[40] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[40]
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[84] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[84]
2015-04-07 18:20:29,543 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[130] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[130]
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[41] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[41]
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[85] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[85]
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[131] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,544 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[131]
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[42] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[42]
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[86] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[86]
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[132] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) $f0),_col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f1)),_col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f2)),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) $f3)))
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[132]
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[43] with rs:(_col0: string|{$hdt$_0-subquery1}channel,_col1: string|{$hdt$_0-subquery1}id,_col2: double|{$hdt$_0-subquery1}sales,_col3: double|{$hdt$_0-subquery1}returns,_col4: double|{$hdt$_0-subquery1}profit)
2015-04-07 18:20:29,545 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[43]
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string store channel GenericUDFConcat(Const string store, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[87] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[87]
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string catalog channel GenericUDFConcat(Const string catalog_page, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[133] with rs:(_col0: string|{$hdt$_0-subquery2}channel,_col1: string|{$hdt$_0-subquery2}id,_col2: double|{$hdt$_0-subquery2}sales,_col3: double|{$hdt$_0-subquery2}returns,_col4: double|{$hdt$_0-subquery2}profit)
2015-04-07 18:20:29,546 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[133]
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Const string web channel GenericUDFConcat(Const string web_site, Column[_col0]) Column[_col1] Column[_col2] Column[_col3])
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:UNION[88] with rs:(_col0: string|{$hdt$_0}channel,_col1: string|{$hdt$_0}id,_col2: double|{$hdt$_0}sales,_col3: double|{$hdt$_0}returns,_col4: double|{$hdt$_0}profit)
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(124)) - Constant of op SEL_43 {}
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[136] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col2: string|{null}grouping__id,_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[136]
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[137] with rs:(KEY._col0: string|{}(. (tok_table_or_col $hdt$_0) channel),KEY._col1: string|{}(. (tok_table_or_col $hdt$_0) id),KEY._col2: string|{null}grouping__id,VALUE._col0: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),VALUE._col1: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),VALUE._col2: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,547 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[137]
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:GBY[138] with rs:(_col0: string|{}(. (tok_table_or_col $hdt$_0) channel),_col1: string|{}(. (tok_table_or_col $hdt$_0) id),_col3: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) sales)),_col4: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) returns)),_col5: double|{}(tok_function sum (. (tok_table_or_col $hdt$_0) profit)))
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator GBY[138]
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[139] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[139]
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[_col0] Column[_col1] Column[_col3] Column[_col4] Column[_col5])
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:RS[140] with rs:(KEY.reducesinkkey0: string|{null}channel,KEY.reducesinkkey1: string|{null}id,VALUE._col0: double|{null}sales,VALUE._col1: double|{null}returns,VALUE._col2: double|{null}profit)
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator RS[140]
2015-04-07 18:20:29,548 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:SEL[141] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator SEL[141]
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcFactory (ConstantPropagateProcFactory.java:process(730)) - New column list:(Column[KEY.reducesinkkey0] Column[KEY.reducesinkkey1] Column[VALUE._col0] Column[VALUE._col1] Column[VALUE._col2])
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:LIM[142] with rs:(_col0: string|{null}channel,_col1: string|{null}id,_col2: double|{null}sales,_col3: double|{null}returns,_col4: double|{null}profit)
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator LIM[142]
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(112)) - Getting constants of op:FS[143] with rs:(_col0: string|{},_col1: string|{},_col2: double|{},_col3: double|{},_col4: double|{})
2015-04-07 18:20:29,549 DEBUG [main]: optimizer.ConstantPropagateProcCtx (ConstantPropagateProcCtx.java:getPropagatedConstants(174)) - Offerring constants [] to operator FS[143]
2015-04-07 18:20:29,598 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 550076554 Data size: 101277521188 Basic stats: COMPLETE Column stats: COMPLETE) on TS[0]
2015-04-07 18:20:29,599 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[0] (store_sales): numRows: 550076554 dataSize: 101277521188 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store_sales.ss_store_sk= fqColName: store_sales.ss_store_sk colName: ss_store_sk colType: int countDistincts: 90 numNulls: 12956175 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, store_sales.ss_sold_date_sk= fqColName: store_sales.ss_sold_date_sk colName: ss_sold_date_sk colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, store_sales.ss_net_profit= fqColName: store_sales.ss_net_profit colName: ss_net_profit colType: float countDistincts: 2380788 numNulls: 12953011 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, store_sales.ss_ticket_number= fqColName: store_sales.ss_ticket_number colName: ss_ticket_number colType: int countDistincts: 56256175 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, store_sales.ss_item_sk= fqColName: store_sales.ss_item_sk colName: ss_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, store_sales.ss_promo_sk= fqColName: store_sales.ss_promo_sk colName: ss_promo_sk colType: int countDistincts: 224 numNulls: 12956284 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, store_sales.ss_ext_sales_price= fqColName: store_sales.ss_ext_sales_price colName: ss_ext_sales_price colType: float countDistincts: 1139925 numNulls: 12957753 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false}
2015-04-07 18:20:29,603 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[201]: numRows: 524469260 dataSize: 14487496336 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store_sales.ss_sold_date_sk= fqColName: store_sales.ss_sold_date_sk colName: ss_sold_date_sk colType: int countDistincts: 2123 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, store_sales.ss_store_sk= fqColName: store_sales.ss_store_sk colName: ss_store_sk colType: int countDistincts: 86 numNulls: 12353036 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, store_sales.ss_net_profit= fqColName: store_sales.ss_net_profit colName: ss_net_profit colType: float countDistincts: 2269957 numNulls: 12350019 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, store_sales.ss_ticket_number= fqColName: store_sales.ss_ticket_number colName: ss_ticket_number colType: int countDistincts: 53637325 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, store_sales.ss_item_sk= fqColName: store_sales.ss_item_sk colName: ss_item_sk colType: int countDistincts: 59650 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, store_sales.ss_promo_sk= fqColName: store_sales.ss_promo_sk colName: ss_promo_sk colType: int countDistincts: 214 numNulls: 12353140 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, store_sales.ss_ext_sales_price= fqColName: store_sales.ss_ext_sales_price colName: ss_ext_sales_price colType: float countDistincts: 1086859 numNulls: 12354541 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false}
2015-04-07 18:20:29,606 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 524469260 Data size: 14487496336 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[201]
2015-04-07 18:20:29,606 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 524469260 Data size: 14487496336 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[1]
2015-04-07 18:20:29,607 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[1]: numRows: 524469260 dataSize: 14487496336 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 2269957 numNulls: 12350019 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 59650 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 2123 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 1086859 numNulls: 12354541 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col4= fqColName: $hdt$_0._col4 colName: _col4 colType: int countDistincts: 53637325 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 214 numNulls: 12353140 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 86 numNulls: 12353036 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false}
2015-04-07 18:20:29,607 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 524469260 Data size: 14487496336 Basic stats: COMPLETE Column stats: COMPLETE) on RS[15]
2015-04-07 18:20:29,608 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[15]: numRows: 524469260 dataSize: 14487496336 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 59650 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey1= fqColName: $hdt$_0.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 53637325 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, $hdt$_0.VALUE._col3= fqColName: $hdt$_0.VALUE._col3 colName: VALUE._col3 colType: float countDistincts: 1086859 numNulls: 12354541 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 2269957 numNulls: 12350019 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 2123 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 86 numNulls: 12353036 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 214 numNulls: 12353140 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:29,630 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 55578005 Data size: 9601960106 Basic stats: COMPLETE Column stats: COMPLETE) on TS[2]
2015-04-07 18:20:29,630 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[2] (store_returns): numRows: 55578005 dataSize: 9601960106 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store_returns.sr_item_sk= fqColName: store_returns.sr_item_sk colName: sr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, store_returns.sr_net_loss= fqColName: store_returns.sr_net_loss colName: sr_net_loss colType: float countDistincts: 879002 numNulls: 1008109 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, store_returns.sr_ticket_number= fqColName: store_returns.sr_ticket_number colName: sr_ticket_number colType: int countDistincts: 34931085 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, store_returns.sr_return_amt= fqColName: store_returns.sr_return_amt colName: sr_return_amt colType: float countDistincts: 841735 numNulls: 1009785 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,631 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[202]: numRows: 55578005 dataSize: 881176504 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store_returns.sr_item_sk= fqColName: store_returns.sr_item_sk colName: sr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, store_returns.sr_net_loss= fqColName: store_returns.sr_net_loss colName: sr_net_loss colType: float countDistincts: 879002 numNulls: 1008109 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, store_returns.sr_ticket_number= fqColName: store_returns.sr_ticket_number colName: sr_ticket_number colType: int countDistincts: 34931085 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, store_returns.sr_return_amt= fqColName: store_returns.sr_return_amt colName: sr_return_amt colType: float countDistincts: 841735 numNulls: 1009785 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,631 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 55578005 Data size: 881176504 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[202]
2015-04-07 18:20:29,632 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 55578005 Data size: 881176504 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[3]
2015-04-07 18:20:29,632 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[3]: numRows: 55578005 dataSize: 881176504 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1._col3= fqColName: $hdt$_1._col3 colName: _col3 colType: float countDistincts: 879002 numNulls: 1008109 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col1= fqColName: $hdt$_1._col1 colName: _col1 colType: int countDistincts: 34931085 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, $hdt$_1._col2= fqColName: $hdt$_1._col2 colName: _col2 colType: float countDistincts: 841735 numNulls: 1009785 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_1._col0= fqColName: $hdt$_1._col0 colName: _col0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,633 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 55578005 Data size: 881176504 Basic stats: COMPLETE Column stats: COMPLETE) on RS[16]
2015-04-07 18:20:29,633 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[16]: numRows: 55578005 dataSize: 881176504 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1.VALUE._col1= fqColName: $hdt$_1.VALUE._col1 colName: VALUE._col1 colType: float countDistincts: 879002 numNulls: 1008109 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1.VALUE._col0= fqColName: $hdt$_1.VALUE._col0 colName: VALUE._col0 colType: float countDistincts: 841735 numNulls: 1009785 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey1= fqColName: $hdt$_1.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 34931085 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000000 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey0= fqColName: $hdt$_1.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,634 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 8686 Data size: 277952 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[17]
2015-04-07 18:20:29,635 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[17]: numRows: 8686 dataSize: 277952 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 38 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 138 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false}
2015-04-07 18:20:29,635 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 8686 Data size: 277952 Basic stats: COMPLETE Column stats: COMPLETE) on RS[19]
2015-04-07 18:20:29,637 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[19]: numRows: 8686 dataSize: 277952 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 38 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 138 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,664 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 73049 Data size: 81741831 Basic stats: COMPLETE Column stats: COMPLETE) on TS[4]
2015-04-07 18:20:29,664 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[4] (date_dim): numRows: 73049 dataSize: 81741831 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 65332 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 92393 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,665 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[203]: numRows: 36524 dataSize: 3579352 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 46196 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,665 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 3579352 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[203]
2015-04-07 18:20:29,666 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[6]
2015-04-07 18:20:29,666 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[6]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col0= fqColName: $hdt$_2._col0 colName: _col0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:29,666 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on RS[21]
2015-04-07 18:20:29,666 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[21]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.KEY.reducesinkkey0= fqColName: $hdt$_2.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:29,670 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[22]: PK parent id(s) - [RS[21]]
2015-04-07 18:20:29,671 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[22]: FK parent id(s) - [RS[19]]
2015-04-07 18:20:29,671 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 4343 Data size: 121604 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[22]
2015-04-07 18:20:29,672 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[22]: numRows: 4343 dataSize: 121604 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 69 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 66 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 10 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false}
2015-04-07 18:20:29,673 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 4343 Data size: 121604 Basic stats: COMPLETE Column stats: COMPLETE) on RS[24]
2015-04-07 18:20:29,674 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[24]: numRows: 4343 dataSize: 121604 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 10 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 69 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 66 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,698 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 48000 Data size: 68732712 Basic stats: COMPLETE Column stats: COMPLETE) on TS[7]
2015-04-07 18:20:29,699 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[7] (item): numRows: 48000 dataSize: 68732712 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 4649 numNulls: 125 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:29,699 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[204]: numRows: 16000 dataSize: 127832 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 1550 numNulls: 42 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:29,699 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 127832 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[204]
2015-04-07 18:20:29,700 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[9]
2015-04-07 18:20:29,700 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[9]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3._col0= fqColName: $hdt$_3._col0 colName: _col0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:29,700 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on RS[26]
2015-04-07 18:20:29,701 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[26]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3.KEY.reducesinkkey0= fqColName: $hdt$_3.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:29,701 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[27]: PK parent id(s) - [RS[26]]
2015-04-07 18:20:29,701 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[27]: FK parent id(s) - [RS[24]]
2015-04-07 18:20:29,702 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1448 Data size: 34752 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[27]
2015-04-07 18:20:29,702 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[27]: numRows: 1448 dataSize: 34752 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 7 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 24 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 23 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false}
2015-04-07 18:20:29,703 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1448 Data size: 34752 Basic stats: COMPLETE Column stats: COMPLETE) on RS[29]
2015-04-07 18:20:29,704 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[29]: numRows: 1448 dataSize: 34752 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 7 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 24 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 23 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,728 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 450 Data size: 530848 Basic stats: COMPLETE Column stats: COMPLETE) on TS[10]
2015-04-07 18:20:29,728 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[10] (promotion): numRows: 450 dataSize: 530848 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 224 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 2 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,729 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[205]: numRows: 225 dataSize: 20025 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 1 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,729 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 20025 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[205]
2015-04-07 18:20:29,729 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[12]
2015-04-07 18:20:29,730 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[12]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4._col0= fqColName: $hdt$_4._col0 colName: _col0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:29,730 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on RS[31]
2015-04-07 18:20:29,730 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[31]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4.KEY.reducesinkkey0= fqColName: $hdt$_4.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:29,731 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[32]: PK parent id(s) - [RS[31]]
2015-04-07 18:20:29,731 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[32]: FK parent id(s) - [RS[29]]
2015-04-07 18:20:29,731 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 14480 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[32]
2015-04-07 18:20:29,732 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[32]: numRows: 724 dataSize: 14480 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false}
2015-04-07 18:20:29,732 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 14480 Basic stats: COMPLETE Column stats: COMPLETE) on RS[34]
2015-04-07 18:20:29,733 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[34]: numRows: 724 dataSize: 14480 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false}
2015-04-07 18:20:29,755 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 212 Data size: 405680 Basic stats: COMPLETE Column stats: COMPLETE) on TS[13]
2015-04-07 18:20:29,755 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[13] (store): numRows: 212 dataSize: 405680 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store.s_store_id= fqColName: store.s_store_id colName: s_store_id colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, store.s_store_sk= fqColName: store.s_store_sk colName: s_store_sk colType: int countDistincts: 172 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: true}
2015-04-07 18:20:29,756 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[206]: numRows: 212 dataSize: 22048 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {store.s_store_id= fqColName: store.s_store_id colName: s_store_id colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, store.s_store_sk= fqColName: store.s_store_sk colName: s_store_sk colType: int countDistincts: 172 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: true}
2015-04-07 18:20:29,756 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 212 Data size: 22048 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[206]
2015-04-07 18:20:29,756 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 212 Data size: 22048 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[14]
2015-04-07 18:20:29,757 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[14]: numRows: 212 dataSize: 22048 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5._col1= fqColName: $hdt$_5._col1 colName: _col1 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_5._col0= fqColName: $hdt$_5._col0 colName: _col0 colType: int countDistincts: 172 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: true}
2015-04-07 18:20:29,757 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 212 Data size: 22048 Basic stats: COMPLETE Column stats: COMPLETE) on RS[36]
2015-04-07 18:20:29,757 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[36]: numRows: 212 dataSize: 22048 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5.KEY.reducesinkkey0= fqColName: $hdt$_5.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 172 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 212 ] isPrimaryKey: true, $hdt$_5.VALUE._col0= fqColName: $hdt$_5.VALUE._col0 colName: VALUE._col0 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,758 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[37]: PK parent id(s) - [RS[36]]
2015-04-07 18:20:29,758 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[37]: FK parent id(s) - [RS[34]]
2015-04-07 18:20:29,758 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 83984 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[37]
2015-04-07 18:20:29,759 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[37]: numRows: 724 dataSize: 83984 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 9942.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 10447.7197265625 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19387.169921875 ] isPrimaryKey: false, $hdt$_5._col18= fqColName: $hdt$_5._col18 colName: _col18 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false}
2015-04-07 18:20:29,760 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 83984 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[38]
2015-04-07 18:20:29,760 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[38]: numRows: 724 dataSize: 83984 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 19884.0 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: float countDistincts: 724 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: float countDistincts: 724 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,761 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[40]: inputSize: 83984 maxSplitSize: 100000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:29,766 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[40] hashAgg: true
2015-04-07 18:20:29,766 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(729)) - [Case 3] STATS-GBY[40]: cardinality: 117
2015-04-07 18:20:29,766 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 117 Data size: 14508 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[40]
2015-04-07 18:20:29,766 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[40]: numRows: 117 dataSize: 14508 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,767 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 117 Data size: 14508 Basic stats: COMPLETE Column stats: COMPLETE) on RS[41]
2015-04-07 18:20:29,767 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[41]: numRows: 117 dataSize: 14508 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {KEY._col0= fqColName: KEY._col0 colName: KEY._col0 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col2= fqColName: VALUE._col2 colName: VALUE._col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col1= fqColName: VALUE._col1 colName: VALUE._col1 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col0= fqColName: VALUE._col0 colName: VALUE._col0 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,767 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[42]: inputSize: 1 maxSplitSize: 256000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:29,767 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[42] hashAgg: false
2015-04-07 18:20:29,768 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(771)) - [Case 9] STATS-GBY[42]: cardinality: 117
2015-04-07 18:20:29,768 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 117 Data size: 14508 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[42]
2015-04-07 18:20:29,768 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[42]: numRows: 117 dataSize: 14508 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 117 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,768 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 117 Data size: 35685 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[43]
2015-04-07 18:20:29,769 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[43]: numRows: 117 dataSize: 35685 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery1._col0= fqColName: $hdt$_0-subquery1._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 13.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col1= fqColName: $hdt$_0-subquery1._col1 colName: _col1 colType: string countDistincts: 117 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col4= fqColName: $hdt$_0-subquery1._col4 colName: _col4 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col3= fqColName: $hdt$_0-subquery1._col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col2= fqColName: $hdt$_0-subquery1._col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,791 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 286549727 Data size: 65825832570 Basic stats: COMPLETE Column stats: COMPLETE) on TS[44]
2015-04-07 18:20:29,792 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[44] (catalog_sales): numRows: 286549727 dataSize: 65825832570 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_sales.cs_item_sk= fqColName: catalog_sales.cs_item_sk colName: cs_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, catalog_sales.cs_catalog_page_sk= fqColName: catalog_sales.cs_catalog_page_sk colName: cs_catalog_page_sk colType: int countDistincts: 7488 numNulls: 718776 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, catalog_sales.cs_ext_sales_price= fqColName: catalog_sales.cs_ext_sales_price colName: cs_ext_sales_price colType: float countDistincts: 1612098 numNulls: 718961 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, catalog_sales.cs_sold_date_sk= fqColName: catalog_sales.cs_sold_date_sk colName: cs_sold_date_sk colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, catalog_sales.cs_promo_sk= fqColName: catalog_sales.cs_promo_sk colName: cs_promo_sk colType: int countDistincts: 224 numNulls: 720283 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, catalog_sales.cs_net_profit= fqColName: catalog_sales.cs_net_profit colName: cs_net_profit colType: float countDistincts: 2090632 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, catalog_sales.cs_order_number= fqColName: catalog_sales.cs_order_number colName: cs_order_number colType: int countDistincts: 45300013 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 32000000 ] isPrimaryKey: false}
2015-04-07 18:20:29,794 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[207]: numRows: 285112475 dataSize: 7974560516 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_sales.cs_catalog_page_sk= fqColName: catalog_sales.cs_catalog_page_sk colName: cs_catalog_page_sk colType: int countDistincts: 7451 numNulls: 715171 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, catalog_sales.cs_item_sk= fqColName: catalog_sales.cs_item_sk colName: cs_item_sk colType: int countDistincts: 62249 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, catalog_sales.cs_ext_sales_price= fqColName: catalog_sales.cs_ext_sales_price colName: cs_ext_sales_price colType: float countDistincts: 1604013 numNulls: 715355 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, catalog_sales.cs_sold_date_sk= fqColName: catalog_sales.cs_sold_date_sk colName: cs_sold_date_sk colType: int countDistincts: 2215 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, catalog_sales.cs_promo_sk= fqColName: catalog_sales.cs_promo_sk colName: cs_promo_sk colType: int countDistincts: 223 numNulls: 716670 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, catalog_sales.cs_net_profit= fqColName: catalog_sales.cs_net_profit colName: cs_net_profit colType: float countDistincts: 2080146 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, catalog_sales.cs_order_number= fqColName: catalog_sales.cs_order_number colName: cs_order_number colType: int countDistincts: 45072802 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 32000000 ] isPrimaryKey: false}
2015-04-07 18:20:29,794 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 285112475 Data size: 7974560516 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[207]
2015-04-07 18:20:29,795 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 285112475 Data size: 7974560516 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[45]
2015-04-07 18:20:29,795 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[45]: numRows: 285112475 dataSize: 7974560516 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 2080146 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 7451 numNulls: 715171 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 2215 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 1604013 numNulls: 715355 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col4= fqColName: $hdt$_0._col4 colName: _col4 colType: int countDistincts: 45072802 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 32000000 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 223 numNulls: 716670 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 62249 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,796 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 285112475 Data size: 7974560516 Basic stats: COMPLETE Column stats: COMPLETE) on RS[59]
2015-04-07 18:20:29,796 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[59]: numRows: 285112475 dataSize: 7974560516 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 62249 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey1= fqColName: $hdt$_0.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 45072802 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 32000000 ] isPrimaryKey: false, $hdt$_0.VALUE._col3= fqColName: $hdt$_0.VALUE._col3 colName: VALUE._col3 colType: float countDistincts: 1604013 numNulls: 715355 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 2080146 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 2215 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 7451 numNulls: 715171 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 223 numNulls: 716670 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:29,820 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 28798881 Data size: 5764329494 Basic stats: COMPLETE Column stats: COMPLETE) on TS[46]
2015-04-07 18:20:29,820 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[46] (catalog_returns): numRows: 28798881 dataSize: 5764329494 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_returns.cr_order_number= fqColName: catalog_returns.cr_order_number colName: cr_order_number colType: int countDistincts: 18238808 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2 max: 31999999 ] isPrimaryKey: false, catalog_returns.cr_item_sk= fqColName: catalog_returns.cr_item_sk colName: cr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, catalog_returns.cr_return_amount= fqColName: catalog_returns.cr_return_amount colName: cr_return_amount colType: float countDistincts: 1139925 numNulls: 576461 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, catalog_returns.cr_net_loss= fqColName: catalog_returns.cr_net_loss colName: cr_net_loss colType: float countDistincts: 1091596 numNulls: 576295 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false}
2015-04-07 18:20:29,821 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[208]: numRows: 28798881 dataSize: 456171072 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_returns.cr_item_sk= fqColName: catalog_returns.cr_item_sk colName: cr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, catalog_returns.cr_order_number= fqColName: catalog_returns.cr_order_number colName: cr_order_number colType: int countDistincts: 18238808 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2 max: 31999999 ] isPrimaryKey: false, catalog_returns.cr_return_amount= fqColName: catalog_returns.cr_return_amount colName: cr_return_amount colType: float countDistincts: 1139925 numNulls: 576461 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, catalog_returns.cr_net_loss= fqColName: catalog_returns.cr_net_loss colName: cr_net_loss colType: float countDistincts: 1091596 numNulls: 576295 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false}
2015-04-07 18:20:29,821 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 28798881 Data size: 456171072 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[208]
2015-04-07 18:20:29,822 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 28798881 Data size: 456171072 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[47]
2015-04-07 18:20:29,822 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[47]: numRows: 28798881 dataSize: 456171072 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1._col3= fqColName: $hdt$_1._col3 colName: _col3 colType: float countDistincts: 1091596 numNulls: 576295 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col1= fqColName: $hdt$_1._col1 colName: _col1 colType: int countDistincts: 18238808 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2 max: 31999999 ] isPrimaryKey: false, $hdt$_1._col2= fqColName: $hdt$_1._col2 colName: _col2 colType: float countDistincts: 1139925 numNulls: 576461 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_1._col0= fqColName: $hdt$_1._col0 colName: _col0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,823 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 28798881 Data size: 456171072 Basic stats: COMPLETE Column stats: COMPLETE) on RS[60]
2015-04-07 18:20:29,823 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[60]: numRows: 28798881 dataSize: 456171072 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1.VALUE._col1= fqColName: $hdt$_1.VALUE._col1 colName: VALUE._col1 colType: float countDistincts: 1091596 numNulls: 576295 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1.VALUE._col0= fqColName: $hdt$_1.VALUE._col0 colName: VALUE._col0 colType: float countDistincts: 1139925 numNulls: 576461 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey1= fqColName: $hdt$_1.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 18238808 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2 max: 31999999 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey0= fqColName: $hdt$_1.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,824 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2911 Data size: 93152 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[61]
2015-04-07 18:20:29,825 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[61]: numRows: 2911 dataSize: 93152 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 111 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 17 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,825 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2911 Data size: 93152 Basic stats: COMPLETE Column stats: COMPLETE) on RS[63]
2015-04-07 18:20:29,825 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[63]: numRows: 2911 dataSize: 93152 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450815 max: 2452654 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 17 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 111 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:29,846 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 73049 Data size: 81741831 Basic stats: COMPLETE Column stats: COMPLETE) on TS[48]
2015-04-07 18:20:29,847 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[48] (date_dim): numRows: 73049 dataSize: 81741831 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 65332 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 92393 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,847 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[209]: numRows: 36524 dataSize: 3579352 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 46196 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,848 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 3579352 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[209]
2015-04-07 18:20:29,848 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[50]
2015-04-07 18:20:29,848 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[50]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col0= fqColName: $hdt$_2._col0 colName: _col0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:29,849 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on RS[65]
2015-04-07 18:20:29,849 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[65]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.KEY.reducesinkkey0= fqColName: $hdt$_2.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:29,849 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[66]: PK parent id(s) - [RS[65]]
2015-04-07 18:20:29,850 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[66]: FK parent id(s) - [RS[63]]
2015-04-07 18:20:29,850 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 40768 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[66]
2015-04-07 18:20:29,851 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[66]: numRows: 1456 dataSize: 40768 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 56 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 59 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 9 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,851 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 40768 Basic stats: COMPLETE Column stats: COMPLETE) on RS[68]
2015-04-07 18:20:29,852 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[68]: numRows: 1456 dataSize: 40768 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 9828 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 9 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 56 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 59 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:29,873 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 11718 Data size: 5400282 Basic stats: COMPLETE Column stats: COMPLETE) on TS[51]
2015-04-07 18:20:29,874 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[51] (catalog_page): numRows: 11718 dataSize: 5400282 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_page.cp_catalog_page_sk= fqColName: catalog_page.cp_catalog_page_sk colName: cp_catalog_page_sk colType: int countDistincts: 14342 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11718 ] isPrimaryKey: true, catalog_page.cp_catalog_page_id= fqColName: catalog_page.cp_catalog_page_id colName: cp_catalog_page_id colType: string countDistincts: 10590 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,874 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[210]: numRows: 11718 dataSize: 1218672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {catalog_page.cp_catalog_page_sk= fqColName: catalog_page.cp_catalog_page_sk colName: cp_catalog_page_sk colType: int countDistincts: 14342 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11718 ] isPrimaryKey: true, catalog_page.cp_catalog_page_id= fqColName: catalog_page.cp_catalog_page_id colName: cp_catalog_page_id colType: string countDistincts: 10590 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,874 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 11718 Data size: 1218672 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[210]
2015-04-07 18:20:29,875 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 11718 Data size: 1218672 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[52]
2015-04-07 18:20:29,875 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[52]: numRows: 11718 dataSize: 1218672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3._col0= fqColName: $hdt$_3._col0 colName: _col0 colType: int countDistincts: 14342 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11718 ] isPrimaryKey: true, $hdt$_3._col1= fqColName: $hdt$_3._col1 colName: _col1 colType: string countDistincts: 10590 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,875 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 11718 Data size: 1218672 Basic stats: COMPLETE Column stats: COMPLETE) on RS[70]
2015-04-07 18:20:29,875 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[70]: numRows: 11718 dataSize: 1218672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3.VALUE._col0= fqColName: $hdt$_3.VALUE._col0 colName: VALUE._col0 colType: string countDistincts: 10590 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_3.KEY.reducesinkkey0= fqColName: $hdt$_3.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 14342 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11718 ] isPrimaryKey: true}
2015-04-07 18:20:29,876 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[71]: PK parent id(s) - [RS[70]]
2015-04-07 18:20:29,876 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[71]: FK parent id(s) - [RS[68]]
2015-04-07 18:20:29,876 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 180544 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[71]
2015-04-07 18:20:29,878 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[71]: numRows: 1456 dataSize: 180544 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 56 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 59 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_3._col14= fqColName: $hdt$_3._col14 colName: _col14 colType: string countDistincts: 1316 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 9 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,878 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 180544 Basic stats: COMPLETE Column stats: COMPLETE) on RS[73]
2015-04-07 18:20:29,879 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[73]: numRows: 1456 dataSize: 180544 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3.VALUE._col13= fqColName: $hdt$_3.VALUE._col13 colName: VALUE._col13 colType: string countDistincts: 1316 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 9 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 56 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 59 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:29,900 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 48000 Data size: 68732712 Basic stats: COMPLETE Column stats: COMPLETE) on TS[53]
2015-04-07 18:20:29,900 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[53] (item): numRows: 48000 dataSize: 68732712 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 4649 numNulls: 125 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:29,901 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[211]: numRows: 16000 dataSize: 127832 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 1550 numNulls: 42 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:29,901 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 127832 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[211]
2015-04-07 18:20:29,901 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[55]
2015-04-07 18:20:29,902 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[55]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4._col0= fqColName: $hdt$_4._col0 colName: _col0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:29,902 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on RS[75]
2015-04-07 18:20:29,902 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[75]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4.KEY.reducesinkkey0= fqColName: $hdt$_4.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:29,903 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[76]: PK parent id(s) - [RS[75]]
2015-04-07 18:20:29,903 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[76]: FK parent id(s) - [RS[73]]
2015-04-07 18:20:29,903 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 486 Data size: 58320 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[76]
2015-04-07 18:20:29,904 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[76]: numRows: 486 dataSize: 58320 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 5 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 20 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_3._col14= fqColName: $hdt$_3._col14 colName: _col14 colType: string countDistincts: 440 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:29,905 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 486 Data size: 58320 Basic stats: COMPLETE Column stats: COMPLETE) on RS[78]
2015-04-07 18:20:29,905 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[78]: numRows: 486 dataSize: 58320 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3.VALUE._col13= fqColName: $hdt$_3.VALUE._col13 colName: VALUE._col13 colType: string countDistincts: 440 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 5 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 19 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 20 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:29,927 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 450 Data size: 530848 Basic stats: COMPLETE Column stats: COMPLETE) on TS[56]
2015-04-07 18:20:29,928 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[56] (promotion): numRows: 450 dataSize: 530848 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 224 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 2 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,928 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[212]: numRows: 225 dataSize: 20025 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 1 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,929 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 20025 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[212]
2015-04-07 18:20:29,929 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[58]
2015-04-07 18:20:29,929 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[58]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5._col0= fqColName: $hdt$_5._col0 colName: _col0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:29,930 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on RS[80]
2015-04-07 18:20:29,930 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[80]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5.KEY.reducesinkkey0= fqColName: $hdt$_5.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:29,930 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[81]: PK parent id(s) - [RS[80]]
2015-04-07 18:20:29,931 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[81]: FK parent id(s) - [RS[78]]
2015-04-07 18:20:29,931 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 243 Data size: 28188 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[81]
2015-04-07 18:20:29,932 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[81]: numRows: 243 dataSize: 28188 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 3 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19962.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 10 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15781.830078125 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 10 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28778.310546875 ] isPrimaryKey: false, $hdt$_3._col14= fqColName: $hdt$_3._col14 colName: _col14 colType: string countDistincts: 220 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false}
2015-04-07 18:20:29,932 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 243 Data size: 28188 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[82]
2015-04-07 18:20:29,936 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[82]: numRows: 243 dataSize: 28188 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: float countDistincts: 2 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29943.0 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: string countDistincts: 220 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: float countDistincts: 243 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: float countDistincts: 243 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,936 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[84]: inputSize: 28188 maxSplitSize: 100000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:29,937 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[84] hashAgg: true
2015-04-07 18:20:29,937 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(729)) - [Case 3] STATS-GBY[84]: cardinality: 121
2015-04-07 18:20:29,937 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 121 Data size: 15004 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[84]
2015-04-07 18:20:29,937 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[84]: numRows: 121 dataSize: 15004 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 220 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,938 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 121 Data size: 15004 Basic stats: COMPLETE Column stats: COMPLETE) on RS[85]
2015-04-07 18:20:29,938 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[85]: numRows: 121 dataSize: 15004 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {KEY._col0= fqColName: KEY._col0 colName: KEY._col0 colType: string countDistincts: 220 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col2= fqColName: VALUE._col2 colName: VALUE._col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col1= fqColName: VALUE._col1 colName: VALUE._col1 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col0= fqColName: VALUE._col0 colName: VALUE._col0 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,938 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[86]: inputSize: 1 maxSplitSize: 256000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:29,938 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[86] hashAgg: false
2015-04-07 18:20:29,938 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(771)) - [Case 9] STATS-GBY[86]: cardinality: 121
2015-04-07 18:20:29,939 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 121 Data size: 15004 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[86]
2015-04-07 18:20:29,939 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[86]: numRows: 121 dataSize: 15004 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 220 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,939 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 121 Data size: 37147 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[87]
2015-04-07 18:20:29,939 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[87]: numRows: 121 dataSize: 37147 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery2._col2= fqColName: $hdt$_0-subquery2._col2 colName: _col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col0= fqColName: $hdt$_0-subquery2._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 15.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col1= fqColName: $hdt$_0-subquery2._col1 colName: _col1 colType: string countDistincts: 121 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col4= fqColName: $hdt$_0-subquery2._col4 colName: _col4 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col3= fqColName: $hdt$_0-subquery2._col3 colName: _col3 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:29,961 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 143966864 Data size: 33110363004 Basic stats: COMPLETE Column stats: COMPLETE) on TS[90]
2015-04-07 18:20:29,962 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[90] (web_sales): numRows: 143966864 dataSize: 33110363004 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_sales.ws_ext_sales_price= fqColName: web_sales.ws_ext_sales_price colName: ws_ext_sales_price colType: float countDistincts: 1415625 numNulls: 18093 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, web_sales.ws_order_number= fqColName: web_sales.ws_order_number colName: ws_order_number colType: int countDistincts: 14686712 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 12000000 ] isPrimaryKey: false, web_sales.ws_promo_sk= fqColName: web_sales.ws_promo_sk colName: ws_promo_sk colType: int countDistincts: 224 numNulls: 18127 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, web_sales.ws_item_sk= fqColName: web_sales.ws_item_sk colName: ws_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, web_sales.ws_web_site_sk= fqColName: web_sales.ws_web_site_sk colName: ws_web_site_sk colType: int countDistincts: 25 numNulls: 18104 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false, web_sales.ws_net_profit= fqColName: web_sales.ws_net_profit colName: ws_net_profit colType: float countDistincts: 2090632 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, web_sales.ws_sold_date_sk= fqColName: web_sales.ws_sold_date_sk colName: ws_sold_date_sk colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false}
2015-04-07 18:20:29,964 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[213]: numRows: 143930635 dataSize: 4029840544 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_sales.ws_order_number= fqColName: web_sales.ws_order_number colName: ws_order_number colType: int countDistincts: 14683017 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 12000000 ] isPrimaryKey: false, web_sales.ws_ext_sales_price= fqColName: web_sales.ws_ext_sales_price colName: ws_ext_sales_price colType: float countDistincts: 1415269 numNulls: 18088 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, web_sales.ws_item_sk= fqColName: web_sales.ws_item_sk colName: ws_item_sk colType: int countDistincts: 62547 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, web_sales.ws_promo_sk= fqColName: web_sales.ws_promo_sk colName: ws_promo_sk colType: int countDistincts: 224 numNulls: 18122 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, web_sales.ws_web_site_sk= fqColName: web_sales.ws_web_site_sk colName: ws_web_site_sk colType: int countDistincts: 25 numNulls: 18099 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false, web_sales.ws_net_profit= fqColName: web_sales.ws_net_profit colName: ws_net_profit colType: float countDistincts: 2090106 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, web_sales.ws_sold_date_sk= fqColName: web_sales.ws_sold_date_sk colName: ws_sold_date_sk colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false}
2015-04-07 18:20:29,964 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 143930635 Data size: 4029840544 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[213]
2015-04-07 18:20:29,965 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 143930635 Data size: 4029840544 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[91]
2015-04-07 18:20:29,965 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[91]: numRows: 143930635 dataSize: 4029840544 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 2090106 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 62547 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 1415269 numNulls: 18088 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col4= fqColName: $hdt$_0._col4 colName: _col4 colType: int countDistincts: 14683017 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 12000000 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 224 numNulls: 18122 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 25 numNulls: 18099 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false}
2015-04-07 18:20:29,966 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 143930635 Data size: 4029840544 Basic stats: COMPLETE Column stats: COMPLETE) on RS[105]
2015-04-07 18:20:29,966 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[105]: numRows: 143930635 dataSize: 4029840544 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 62547 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey1= fqColName: $hdt$_0.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 14683017 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 12000000 ] isPrimaryKey: false, $hdt$_0.VALUE._col3= fqColName: $hdt$_0.VALUE._col3 colName: VALUE._col3 colType: float countDistincts: 1415269 numNulls: 18088 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 2090106 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 2226 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 25 numNulls: 18099 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 224 numNulls: 18122 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:29,986 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 13749816 Data size: 2585240312 Basic stats: COMPLETE Column stats: COMPLETE) on TS[92]
2015-04-07 18:20:29,986 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[92] (web_returns): numRows: 13749816 dataSize: 2585240312 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_returns.wr_order_number= fqColName: web_returns.wr_order_number colName: wr_order_number colType: int countDistincts: 8007986 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11999999 ] isPrimaryKey: false, web_returns.wr_net_loss= fqColName: web_returns.wr_net_loss colName: wr_net_loss colType: float countDistincts: 739150 numNulls: 324396 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, web_returns.wr_return_amt= fqColName: web_returns.wr_return_amt colName: wr_return_amt colType: float countDistincts: 841735 numNulls: 323700 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, web_returns.wr_item_sk= fqColName: web_returns.wr_item_sk colName: wr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,987 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[214]: numRows: 13749816 dataSize: 217404672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_returns.wr_order_number= fqColName: web_returns.wr_order_number colName: wr_order_number colType: int countDistincts: 8007986 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11999999 ] isPrimaryKey: false, web_returns.wr_net_loss= fqColName: web_returns.wr_net_loss colName: wr_net_loss colType: float countDistincts: 739150 numNulls: 324396 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, web_returns.wr_return_amt= fqColName: web_returns.wr_return_amt colName: wr_return_amt colType: float countDistincts: 841735 numNulls: 323700 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, web_returns.wr_item_sk= fqColName: web_returns.wr_item_sk colName: wr_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,987 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 13749816 Data size: 217404672 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[214]
2015-04-07 18:20:29,988 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 13749816 Data size: 217404672 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[93]
2015-04-07 18:20:29,988 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[93]: numRows: 13749816 dataSize: 217404672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1._col3= fqColName: $hdt$_1._col3 colName: _col3 colType: float countDistincts: 739150 numNulls: 324396 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col1= fqColName: $hdt$_1._col1 colName: _col1 colType: int countDistincts: 8007986 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11999999 ] isPrimaryKey: false, $hdt$_1._col2= fqColName: $hdt$_1._col2 colName: _col2 colType: float countDistincts: 841735 numNulls: 323700 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_1._col0= fqColName: $hdt$_1._col0 colName: _col0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,989 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 13749816 Data size: 217404672 Basic stats: COMPLETE Column stats: COMPLETE) on RS[106]
2015-04-07 18:20:29,989 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[106]: numRows: 13749816 dataSize: 217404672 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_1.VALUE._col1= fqColName: $hdt$_1.VALUE._col1 colName: VALUE._col1 colType: float countDistincts: 739150 numNulls: 324396 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1.VALUE._col0= fqColName: $hdt$_1.VALUE._col0 colName: VALUE._col0 colType: float countDistincts: 841735 numNulls: 323700 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey1= fqColName: $hdt$_1.KEY.reducesinkkey1 colName: KEY.reducesinkkey1 colType: int countDistincts: 8007986 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 11999999 ] isPrimaryKey: false, $hdt$_1.KEY.reducesinkkey0= fqColName: $hdt$_1.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false}
2015-04-07 18:20:29,990 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 68928 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[107]
2015-04-07 18:20:29,990 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[107]: numRows: 2154 dataSize: 68928 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 32 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false}
2015-04-07 18:20:29,991 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 68928 Basic stats: COMPLETE Column stats: COMPLETE) on RS[109]
2015-04-07 18:20:29,992 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[109]: numRows: 2154 dataSize: 68928 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 32 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0.VALUE._col1= fqColName: $hdt$_0.VALUE._col1 colName: VALUE._col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:30,015 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 38 Data size: 70614 Basic stats: COMPLETE Column stats: COMPLETE) on TS[94]
2015-04-07 18:20:30,015 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[94] (web_site): numRows: 38 dataSize: 70614 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_site.web_site_sk= fqColName: web_site.web_site_sk colName: web_site_sk colType: int countDistincts: 25 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: true, web_site.web_site_id= fqColName: web_site.web_site_id colName: web_site_id colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,015 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[215]: numRows: 38 dataSize: 3952 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {web_site.web_site_sk= fqColName: web_site.web_site_sk colName: web_site_sk colType: int countDistincts: 25 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: true, web_site.web_site_id= fqColName: web_site.web_site_id colName: web_site_id colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,016 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 38 Data size: 3952 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[215]
2015-04-07 18:20:30,016 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 38 Data size: 3952 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[95]
2015-04-07 18:20:30,016 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[95]: numRows: 38 dataSize: 3952 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col0= fqColName: $hdt$_2._col0 colName: _col0 colType: int countDistincts: 25 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: true, $hdt$_2._col1= fqColName: $hdt$_2._col1 colName: _col1 colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,017 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 38 Data size: 3952 Basic stats: COMPLETE Column stats: COMPLETE) on RS[111]
2015-04-07 18:20:30,017 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[111]: numRows: 38 dataSize: 3952 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.KEY.reducesinkkey0= fqColName: $hdt$_2.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 25 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 38 ] isPrimaryKey: true, $hdt$_2.VALUE._col0= fqColName: $hdt$_2.VALUE._col0 colName: VALUE._col0 colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,017 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[112]: PK parent id(s) - [RS[111]]
2015-04-07 18:20:30,018 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[112]: FK parent id(s) - [RS[109]]
2015-04-07 18:20:30,018 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 275712 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[112]
2015-04-07 18:20:30,019 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[112]: numRows: 2154 dataSize: 275712 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col12= fqColName: $hdt$_2._col12 colName: _col12 colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 32 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:30,019 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 275712 Basic stats: COMPLETE Column stats: COMPLETE) on RS[114]
2015-04-07 18:20:30,020 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[114]: numRows: 2154 dataSize: 275712 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.VALUE._col11= fqColName: $hdt$_2.VALUE._col11 colName: VALUE._col11 colType: string countDistincts: 17 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2450816 max: 2452642 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 32 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col0= fqColName: $hdt$_0.VALUE._col0 colName: VALUE._col0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 116 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 132 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:30,043 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 73049 Data size: 81741831 Basic stats: COMPLETE Column stats: COMPLETE) on TS[96]
2015-04-07 18:20:30,043 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[96] (date_dim): numRows: 73049 dataSize: 81741831 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 65332 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 92393 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,044 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[216]: numRows: 36524 dataSize: 3579352 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {date_dim.d_date_sk= fqColName: date_dim.d_date_sk colName: d_date_sk colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true, date_dim.d_date= fqColName: date_dim.d_date colName: d_date colType: string countDistincts: 46196 numNulls: 0 avgColLen: 10.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,044 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 3579352 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[216]
2015-04-07 18:20:30,045 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[98]
2015-04-07 18:20:30,045 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[98]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3._col0= fqColName: $hdt$_3._col0 colName: _col0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:30,045 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 36524 Data size: 146096 Basic stats: COMPLETE Column stats: COMPLETE) on RS[116]
2015-04-07 18:20:30,045 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[116]: numRows: 36524 dataSize: 146096 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_3.KEY.reducesinkkey0= fqColName: $hdt$_3.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 32666 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 2415022 max: 2488070 ] isPrimaryKey: true}
2015-04-07 18:20:30,045 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[117]: PK parent id(s) - [RS[116]]
2015-04-07 18:20:30,045 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[117]: FK parent id(s) - [RS[114]]
2015-04-07 18:20:30,046 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1077 Data size: 133548 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[117]
2015-04-07 18:20:30,046 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[117]: numRows: 1077 dataSize: 133548 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col12= fqColName: $hdt$_2._col12 colName: _col12 colType: string countDistincts: 9 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 16 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 58 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 66 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 11 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:30,046 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1077 Data size: 133548 Basic stats: COMPLETE Column stats: COMPLETE) on RS[119]
2015-04-07 18:20:30,047 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[119]: numRows: 1077 dataSize: 133548 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.VALUE._col11= fqColName: $hdt$_2.VALUE._col11 colName: VALUE._col11 colType: string countDistincts: 9 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 11 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 16 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col2= fqColName: $hdt$_0.VALUE._col2 colName: VALUE._col2 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 58 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 66 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:30,067 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 48000 Data size: 68732712 Basic stats: COMPLETE Column stats: COMPLETE) on TS[99]
2015-04-07 18:20:30,067 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[99] (item): numRows: 48000 dataSize: 68732712 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 62562 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 4649 numNulls: 125 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:30,068 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[217]: numRows: 16000 dataSize: 127832 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {item.i_item_sk= fqColName: item.i_item_sk colName: i_item_sk colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true, item.i_current_price= fqColName: item.i_current_price colName: i_current_price colType: float countDistincts: 1550 numNulls: 42 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0900000035762787 max: 99.9899978637695 ] isPrimaryKey: false}
2015-04-07 18:20:30,068 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 127832 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[217]
2015-04-07 18:20:30,069 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[101]
2015-04-07 18:20:30,069 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[101]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4._col0= fqColName: $hdt$_4._col0 colName: _col0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:30,069 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 16000 Data size: 64000 Basic stats: COMPLETE Column stats: COMPLETE) on RS[121]
2015-04-07 18:20:30,070 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[121]: numRows: 16000 dataSize: 64000 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_4.KEY.reducesinkkey0= fqColName: $hdt$_4.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 20854 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 48000 ] isPrimaryKey: true}
2015-04-07 18:20:30,070 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[122]: PK parent id(s) - [RS[121]]
2015-04-07 18:20:30,070 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[122]: FK parent id(s) - [RS[119]]
2015-04-07 18:20:30,071 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 359 Data size: 43080 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[122]
2015-04-07 18:20:30,071 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[122]: numRows: 359 dataSize: 43080 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col12= fqColName: $hdt$_2._col12 colName: _col12 colType: string countDistincts: 3 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 6 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 20 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false}
2015-04-07 18:20:30,072 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 359 Data size: 43080 Basic stats: COMPLETE Column stats: COMPLETE) on RS[124]
2015-04-07 18:20:30,072 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[124]: numRows: 359 dataSize: 43080 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2.VALUE._col11= fqColName: $hdt$_2.VALUE._col11 colName: VALUE._col11 colType: string countDistincts: 3 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0.KEY.reducesinkkey0= fqColName: $hdt$_0.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 1 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: false, $hdt$_0.VALUE._col4= fqColName: $hdt$_0.VALUE._col4 colName: VALUE._col4 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0.VALUE._col5= fqColName: $hdt$_0.VALUE._col5 colName: VALUE._col5 colType: float countDistincts: 6 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_1.VALUE._col9= fqColName: $hdt$_1.VALUE._col9 colName: VALUE._col9 colType: float countDistincts: 20 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1.VALUE._col8= fqColName: $hdt$_1.VALUE._col8 colName: VALUE._col8 colType: float countDistincts: 22 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false}
2015-04-07 18:20:30,090 DEBUG [main]: exec.TableScanOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 450 Data size: 530848 Basic stats: COMPLETE Column stats: COMPLETE) on TS[102]
2015-04-07 18:20:30,091 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(114)) - [0] STATS-TS[102] (promotion): numRows: 450 dataSize: 530848 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 224 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 2 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,091 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(275)) - [0] STATS-FIL[218]: numRows: 225 dataSize: 20025 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {promotion.p_promo_sk= fqColName: promotion.p_promo_sk colName: p_promo_sk colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true, promotion.p_channel_tv= fqColName: promotion.p_channel_tv colName: p_channel_tv colType: string countDistincts: 1 numNulls: 0 avgColLen: 0.984444444444445 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,091 DEBUG [main]: exec.FilterOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 20025 Basic stats: COMPLETE Column stats: COMPLETE) on FIL[218]
2015-04-07 18:20:30,092 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[104]
2015-04-07 18:20:30,092 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[104]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5._col0= fqColName: $hdt$_5._col0 colName: _col0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:30,092 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 225 Data size: 900 Basic stats: COMPLETE Column stats: COMPLETE) on RS[126]
2015-04-07 18:20:30,092 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[126]: numRows: 225 dataSize: 900 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_5.KEY.reducesinkkey0= fqColName: $hdt$_5.KEY.reducesinkkey0 colName: KEY.reducesinkkey0 colType: int countDistincts: 112 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 1 max: 450 ] isPrimaryKey: true}
2015-04-07 18:20:30,092 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1266)) - STATS-JOIN[127]: PK parent id(s) - [RS[126]]
2015-04-07 18:20:30,092 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:inferPKFKRelationship(1273)) - STATS-JOIN[127]: FK parent id(s) - [RS[124]]
2015-04-07 18:20:30,093 DEBUG [main]: exec.JoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 180 Data size: 20880 Basic stats: COMPLETE Column stats: COMPLETE) on JOIN[127]
2015-04-07 18:20:30,093 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1185)) - [0] STATS-JOIN[127]: numRows: 180 dataSize: 20880 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_2._col12= fqColName: $hdt$_2._col12 colName: _col12 colType: string countDistincts: 2 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col6= fqColName: $hdt$_0._col6 colName: _col6 colType: float countDistincts: 4 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: -10000.0 max: 19840.0 ] isPrimaryKey: false, $hdt$_1._col10= fqColName: $hdt$_1._col10 colName: _col10 colType: float countDistincts: 11 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.5 max: 15068.9599609375 ] isPrimaryKey: false, $hdt$_1._col9= fqColName: $hdt$_1._col9 colName: _col9 colType: float countDistincts: 12 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 28346.310546875 ] isPrimaryKey: false, $hdt$_0._col5= fqColName: $hdt$_0._col5 colName: _col5 colType: float countDistincts: 3 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false}
2015-04-07 18:20:30,093 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 180 Data size: 20880 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[128]
2015-04-07 18:20:30,093 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[128]: numRows: 180 dataSize: 20880 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0._col1= fqColName: $hdt$_0._col1 colName: _col1 colType: float countDistincts: 3 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 Range: [ min: 0.0 max: 29810.0 ] isPrimaryKey: false, $hdt$_0._col0= fqColName: $hdt$_0._col0 colName: _col0 colType: string countDistincts: 2 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col3= fqColName: $hdt$_0._col3 colName: _col3 colType: float countDistincts: 180 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0._col2= fqColName: $hdt$_0._col2 colName: _col2 colType: float countDistincts: 180 numNulls: 0 avgColLen: 4.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,094 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[130]: inputSize: 20880 maxSplitSize: 100000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:30,094 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[130] hashAgg: true
2015-04-07 18:20:30,094 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(729)) - [Case 3] STATS-GBY[130]: cardinality: 2
2015-04-07 18:20:30,094 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2 Data size: 248 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[130]
2015-04-07 18:20:30,095 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[130]: numRows: 2 dataSize: 248 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 2 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,095 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2 Data size: 248 Basic stats: COMPLETE Column stats: COMPLETE) on RS[131]
2015-04-07 18:20:30,095 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[131]: numRows: 2 dataSize: 248 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {KEY._col0= fqColName: KEY._col0 colName: KEY._col0 colType: string countDistincts: 2 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col2= fqColName: VALUE._col2 colName: VALUE._col2 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col1= fqColName: VALUE._col1 colName: VALUE._col1 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col0= fqColName: VALUE._col0 colName: VALUE._col0 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,095 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[132]: inputSize: 1 maxSplitSize: 256000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:30,095 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[132] hashAgg: false
2015-04-07 18:20:30,096 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(771)) - [Case 9] STATS-GBY[132]: cardinality: 2
2015-04-07 18:20:30,096 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2 Data size: 248 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[132]
2015-04-07 18:20:30,096 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[132]: numRows: 2 dataSize: 248 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col1= fqColName: _col1 colName: _col1 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col0= fqColName: _col0 colName: _col0 colType: string countDistincts: 2 numNulls: 0 avgColLen: 16.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,096 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2 Data size: 606 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[133]
2015-04-07 18:20:30,097 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[133]: numRows: 2 dataSize: 606 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery2._col2= fqColName: $hdt$_0-subquery2._col2 colName: _col2 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col0= fqColName: $hdt$_0-subquery2._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 11.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col1= fqColName: $hdt$_0-subquery2._col1 colName: _col1 colType: string countDistincts: 2 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col4= fqColName: $hdt$_0-subquery2._col4 colName: _col4 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col3= fqColName: $hdt$_0-subquery2._col3 colName: _col3 colType: double countDistincts: 2 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,097 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1736)) - [0] STATS-UNION[88]: numRows: 117 dataSize: 35685 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery1._col0= fqColName: $hdt$_0-subquery1._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 13.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col1= fqColName: $hdt$_0-subquery1._col1 colName: _col1 colType: string countDistincts: 117 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col4= fqColName: $hdt$_0-subquery1._col4 colName: _col4 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col3= fqColName: $hdt$_0-subquery1._col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col2= fqColName: $hdt$_0-subquery1._col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,097 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1736)) - [0] STATS-UNION[88]: numRows: 238 dataSize: 72832 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery1._col0= fqColName: $hdt$_0-subquery1._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 13.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col1= fqColName: $hdt$_0-subquery1._col1 colName: _col1 colType: string countDistincts: 117 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col4= fqColName: $hdt$_0-subquery1._col4 colName: _col4 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col3= fqColName: $hdt$_0-subquery1._col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col2= fqColName: $hdt$_0-subquery1._col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col0= fqColName: $hdt$_0-subquery2._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 15.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col2= fqColName: $hdt$_0-subquery2._col2 colName: _col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col1= fqColName: $hdt$_0-subquery2._col1 colName: _col1 colType: string countDistincts: 121 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col4= fqColName: $hdt$_0-subquery2._col4 colName: _col4 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col3= fqColName: $hdt$_0-subquery2._col3 colName: _col3 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,098 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1736)) - [0] STATS-UNION[88]: numRows: 240 dataSize: 73438 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {$hdt$_0-subquery1._col0= fqColName: $hdt$_0-subquery1._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 13.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col1= fqColName: $hdt$_0-subquery1._col1 colName: _col1 colType: string countDistincts: 117 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col4= fqColName: $hdt$_0-subquery1._col4 colName: _col4 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col3= fqColName: $hdt$_0-subquery1._col3 colName: _col3 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery1._col2= fqColName: $hdt$_0-subquery1._col2 colName: _col2 colType: double countDistincts: 117 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col0= fqColName: $hdt$_0-subquery2._col0 colName: _col0 colType: string countDistincts: 1 numNulls: 0 avgColLen: 15.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col2= fqColName: $hdt$_0-subquery2._col2 colName: _col2 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col1= fqColName: $hdt$_0-subquery2._col1 colName: _col1 colType: string countDistincts: 121 numNulls: 0 avgColLen: 100.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col4= fqColName: $hdt$_0-subquery2._col4 colName: _col4 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, $hdt$_0-subquery2._col3= fqColName: $hdt$_0-subquery2._col3 colName: _col3 colType: double countDistincts: 121 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,098 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[136]: inputSize: 73438 maxSplitSize: 100000000 parallelism: 1 containsGroupingSet: true sizeOfGroupingSet: 3
2015-04-07 18:20:30,098 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[136] hashAgg: true
2015-04-07 18:20:30,099 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(722)) - [Case 4] STATS-GBY[136]: cardinality: 3
2015-04-07 18:20:30,099 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 3 Data size: 327 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[136]
2015-04-07 18:20:30,099 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[136]: numRows: 3 dataSize: 327 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col5= fqColName: _col5 colName: _col5 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: string countDistincts: 1 numNulls: 0 avgColLen: 1.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,099 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 3 Data size: 327 Basic stats: COMPLETE Column stats: COMPLETE) on RS[137]
2015-04-07 18:20:30,100 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[137]: numRows: 3 dataSize: 327 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {KEY._col2= fqColName: KEY._col2 colName: KEY._col2 colType: string countDistincts: 1 numNulls: 0 avgColLen: 1.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col2= fqColName: VALUE._col2 colName: VALUE._col2 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col1= fqColName: VALUE._col1 colName: VALUE._col1 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col0= fqColName: VALUE._col0 colName: VALUE._col0 colType: double countDistincts: 3 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,100 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(655)) - STATS-GBY[138]: inputSize: 1 maxSplitSize: 256000000 parallelism: 1 containsGroupingSet: false sizeOfGroupingSet: 1
2015-04-07 18:20:30,100 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(668)) - STATS-GBY[138] hashAgg: false
2015-04-07 18:20:30,100 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(771)) - [Case 9] STATS-GBY[138]: cardinality: 1
2015-04-07 18:20:30,100 DEBUG [main]: exec.GroupByOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1 Data size: 24 Basic stats: COMPLETE Column stats: COMPLETE) on GBY[138]
2015-04-07 18:20:30,101 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(862)) - [0] STATS-GBY[138]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col5= fqColName: _col5 colName: _col5 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,103 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1 Data size: 24 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[139]
2015-04-07 18:20:30,103 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[139]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,103 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1 Data size: 24 Basic stats: COMPLETE Column stats: COMPLETE) on RS[140]
2015-04-07 18:20:30,103 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1691)) - [0] STATS-RS[140]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {VALUE._col2= fqColName: VALUE._col2 colName: VALUE._col2 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col1= fqColName: VALUE._col1 colName: VALUE._col1 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, VALUE._col0= fqColName: VALUE._col0 colName: VALUE._col0 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,104 DEBUG [main]: exec.SelectOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1 Data size: 24 Basic stats: COMPLETE Column stats: COMPLETE) on SEL[141]
2015-04-07 18:20:30,104 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(178)) - [0] STATS-SEL[141]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,104 DEBUG [main]: exec.LimitOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1 Data size: 24 Basic stats: COMPLETE Column stats: COMPLETE) on LIM[142]
2015-04-07 18:20:30,104 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1604)) - [0] STATS-LIM[142]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,105 DEBUG [main]: annotation.StatsRulesProcFactory (StatsRulesProcFactory.java:process(1736)) - [0] STATS-FS[143]: numRows: 1 dataSize: 24 basicStatsState: COMPLETE colStatsState: COMPLETE colStats: {_col4= fqColName: _col4 colName: _col4 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col3= fqColName: _col3 colName: _col3 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false, _col2= fqColName: _col2 colName: _col2 colType: double countDistincts: 1 numNulls: 0 avgColLen: 8.0 numTrues: 0 numFalses: 0 isPrimaryKey: false}
2015-04-07 18:20:30,121 DEBUG [main]: ipc.Client (Client.java:(427)) - The ping interval is 60000 ms.
2015-04-07 18:20:30,121 DEBUG [main]: ipc.Client (Client.java:setupIOstreams(697)) - Connecting to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020
2015-04-07 18:20:30,122 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:run(961)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar: starting, having connections 1
2015-04-07 18:20:30,123 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #113
2015-04-07 18:20:30,124 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #113
2015-04-07 18:20:30,125 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 5ms
2015-04-07 18:20:30,361 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2d4f7a67) on TS[0]
2015-04-07 18:20:30,362 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2d4f7a67) on FIL[201]
2015-04-07 18:20:30,362 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3ced176e) on SEL[1]
2015-04-07 18:20:30,362 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@719d5601) on RS[15]
2015-04-07 18:20:30,363 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@107995ed) on RS[16]
2015-04-07 18:20:30,363 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1e62030e) on JOIN[17]
2015-04-07 18:20:30,363 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@34b69bb7) on RS[19]
2015-04-07 18:20:30,363 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@40a9266a) on RS[21]
2015-04-07 18:20:30,363 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@21191a50) on JOIN[22]
2015-04-07 18:20:30,364 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@770e8b29) on RS[24]
2015-04-07 18:20:30,364 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5bd26dcf) on RS[26]
2015-04-07 18:20:30,364 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@54276021) on JOIN[27]
2015-04-07 18:20:30,364 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@651841b0) on RS[29]
2015-04-07 18:20:30,364 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1b80bdaa) on RS[31]
2015-04-07 18:20:30,364 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2123f201) on JOIN[32]
2015-04-07 18:20:30,365 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3ee530a6) on RS[34]
2015-04-07 18:20:30,365 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@38dd028c) on RS[36]
2015-04-07 18:20:30,365 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@35d2527e) on JOIN[37]
2015-04-07 18:20:30,365 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@325e9cd) on SEL[38]
2015-04-07 18:20:30,366 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e189358) on GBY[40]
2015-04-07 18:20:30,368 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3561706e) on RS[41]
2015-04-07 18:20:30,368 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@101c6123) on GBY[42]
2015-04-07 18:20:30,369 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@372d4918) on SEL[43]
2015-04-07 18:20:30,369 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7e19e2f4) on UNION[88]
2015-04-07 18:20:30,369 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@558341d9) on GBY[136]
2015-04-07 18:20:30,369 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c58396b) on RS[137]
2015-04-07 18:20:30,370 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6421ae56) on GBY[138]
2015-04-07 18:20:30,370 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5f3cc375) on SEL[139]
2015-04-07 18:20:30,370 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@e44672c) on RS[140]
2015-04-07 18:20:30,370 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2cd18105) on SEL[141]
2015-04-07 18:20:30,371 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2cd18105) on LIM[142]
2015-04-07 18:20:30,371 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2cd18105) on FS[143]
2015-04-07 18:20:30,372 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #114
2015-04-07 18:20:30,373 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #114
2015-04-07 18:20:30,374 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 3ms
2015-04-07 18:20:30,396 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5607b515) on TS[2]
2015-04-07 18:20:30,397 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5607b515) on FIL[202]
2015-04-07 18:20:30,397 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1401a1d3) on SEL[3]
2015-04-07 18:20:30,397 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@77272de7) on RS[16]
2015-04-07 18:20:30,397 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2d36d5ce) on JOIN[17]
2015-04-07 18:20:30,397 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6b0ede92) on RS[19]
2015-04-07 18:20:30,397 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1d367a27) on JOIN[22]
2015-04-07 18:20:30,398 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@638da56c) on RS[24]
2015-04-07 18:20:30,398 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@68678883) on JOIN[27]
2015-04-07 18:20:30,398 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65338601) on RS[29]
2015-04-07 18:20:30,398 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@19a2df8f) on JOIN[32]
2015-04-07 18:20:30,398 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1403326f) on RS[34]
2015-04-07 18:20:30,399 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5de41fac) on JOIN[37]
2015-04-07 18:20:30,399 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2bdb855c) on SEL[38]
2015-04-07 18:20:30,399 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@59107182) on GBY[40]
2015-04-07 18:20:30,399 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@468c3b7c) on RS[41]
2015-04-07 18:20:30,399 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@20956e13) on GBY[42]
2015-04-07 18:20:30,400 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@326db21b) on SEL[43]
2015-04-07 18:20:30,400 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3fc8247a) on UNION[88]
2015-04-07 18:20:30,400 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6cd2e64c) on GBY[136]
2015-04-07 18:20:30,400 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@a0dbf65) on RS[137]
2015-04-07 18:20:30,401 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@c90850b) on GBY[138]
2015-04-07 18:20:30,403 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c7ee02f) on SEL[139]
2015-04-07 18:20:30,403 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4db03c46) on RS[140]
2015-04-07 18:20:30,403 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d453f82) on SEL[141]
2015-04-07 18:20:30,403 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d453f82) on LIM[142]
2015-04-07 18:20:30,404 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d453f82) on FS[143]
2015-04-07 18:20:30,404 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #115
2015-04-07 18:20:30,405 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #115
2015-04-07 18:20:30,405 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,406 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@539fc769) on TS[4]
2015-04-07 18:20:30,406 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@539fc769) on FIL[203]
2015-04-07 18:20:30,406 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1edce963) on SEL[6]
2015-04-07 18:20:30,406 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@395e7269) on RS[21]
2015-04-07 18:20:30,406 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@67a968eb) on JOIN[22]
2015-04-07 18:20:30,406 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@23275178) on RS[24]
2015-04-07 18:20:30,407 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6a55af4f) on JOIN[27]
2015-04-07 18:20:30,407 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1f68a213) on RS[29]
2015-04-07 18:20:30,407 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@e689d81) on JOIN[32]
2015-04-07 18:20:30,407 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@763c878a) on RS[34]
2015-04-07 18:20:30,407 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7fe6b1aa) on JOIN[37]
2015-04-07 18:20:30,408 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@29a5180) on SEL[38]
2015-04-07 18:20:30,408 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@615cabd5) on GBY[40]
2015-04-07 18:20:30,408 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@b155ee3) on RS[41]
2015-04-07 18:20:30,408 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@28088ec4) on GBY[42]
2015-04-07 18:20:30,408 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@49d4fa64) on SEL[43]
2015-04-07 18:20:30,409 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3d82e11a) on UNION[88]
2015-04-07 18:20:30,409 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5b889182) on GBY[136]
2015-04-07 18:20:30,409 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@63091cc0) on RS[137]
2015-04-07 18:20:30,409 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6b3eb40b) on GBY[138]
2015-04-07 18:20:30,410 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@619e752e) on SEL[139]
2015-04-07 18:20:30,412 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5e102436) on RS[140]
2015-04-07 18:20:30,412 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@75b98578) on SEL[141]
2015-04-07 18:20:30,412 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@75b98578) on LIM[142]
2015-04-07 18:20:30,413 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@75b98578) on FS[143]
2015-04-07 18:20:30,413 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #116
2015-04-07 18:20:30,414 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #116
2015-04-07 18:20:30,414 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,415 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7db00f07) on TS[7]
2015-04-07 18:20:30,415 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7db00f07) on FIL[204]
2015-04-07 18:20:30,415 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@31aad508) on SEL[9]
2015-04-07 18:20:30,415 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@468819b1) on RS[26]
2015-04-07 18:20:30,416 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@114ed7a4) on JOIN[27]
2015-04-07 18:20:30,416 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4f2f58dc) on RS[29]
2015-04-07 18:20:30,416 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2d72fc21) on JOIN[32]
2015-04-07 18:20:30,416 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5806f1d6) on RS[34]
2015-04-07 18:20:30,416 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2fef45c0) on JOIN[37]
2015-04-07 18:20:30,417 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5cc58d6) on SEL[38]
2015-04-07 18:20:30,417 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2adc4c93) on GBY[40]
2015-04-07 18:20:30,417 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65275ce0) on RS[41]
2015-04-07 18:20:30,417 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b42aa01) on GBY[42]
2015-04-07 18:20:30,418 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@55a766df) on SEL[43]
2015-04-07 18:20:30,418 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6152e667) on UNION[88]
2015-04-07 18:20:30,418 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@994a61c) on GBY[136]
2015-04-07 18:20:30,418 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7e257d2d) on RS[137]
2015-04-07 18:20:30,419 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4f3d560e) on GBY[138]
2015-04-07 18:20:30,419 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@43dcd9c6) on SEL[139]
2015-04-07 18:20:30,419 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@585d78f8) on RS[140]
2015-04-07 18:20:30,420 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@60b10f1a) on SEL[141]
2015-04-07 18:20:30,420 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@60b10f1a) on LIM[142]
2015-04-07 18:20:30,422 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@60b10f1a) on FS[143]
2015-04-07 18:20:30,423 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #117
2015-04-07 18:20:30,424 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #117
2015-04-07 18:20:30,424 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,424 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6c3f6831) on TS[10]
2015-04-07 18:20:30,424 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6c3f6831) on FIL[205]
2015-04-07 18:20:30,425 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@36d1a07c) on SEL[12]
2015-04-07 18:20:30,425 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7c7f4901) on RS[31]
2015-04-07 18:20:30,425 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@8922082) on JOIN[32]
2015-04-07 18:20:30,425 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@31943b33) on RS[34]
2015-04-07 18:20:30,426 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7abaaab2) on JOIN[37]
2015-04-07 18:20:30,426 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@751ccb10) on SEL[38]
2015-04-07 18:20:30,426 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3557c381) on GBY[40]
2015-04-07 18:20:30,426 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@14e46583) on RS[41]
2015-04-07 18:20:30,427 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1ec4862c) on GBY[42]
2015-04-07 18:20:30,427 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7844c27b) on SEL[43]
2015-04-07 18:20:30,427 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6a3c56ec) on UNION[88]
2015-04-07 18:20:30,427 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1f6ed671) on GBY[136]
2015-04-07 18:20:30,428 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@25c0a4d6) on RS[137]
2015-04-07 18:20:30,428 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@a85f0f7) on GBY[138]
2015-04-07 18:20:30,428 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5f8eed86) on SEL[139]
2015-04-07 18:20:30,429 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@208c296d) on RS[140]
2015-04-07 18:20:30,429 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@51f3c3cc) on SEL[141]
2015-04-07 18:20:30,429 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@51f3c3cc) on LIM[142]
2015-04-07 18:20:30,430 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@51f3c3cc) on FS[143]
2015-04-07 18:20:30,430 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #118
2015-04-07 18:20:30,431 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #118
2015-04-07 18:20:30,431 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,432 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@58272ccd) on TS[13]
2015-04-07 18:20:30,432 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@58272ccd) on FIL[206]
2015-04-07 18:20:30,432 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@73ee73f1) on SEL[14]
2015-04-07 18:20:30,433 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2bfe0ead) on RS[36]
2015-04-07 18:20:30,433 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3475966b) on JOIN[37]
2015-04-07 18:20:30,433 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@13e665b5) on SEL[38]
2015-04-07 18:20:30,433 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b1f5847) on GBY[40]
2015-04-07 18:20:30,433 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@46dcdc77) on RS[41]
2015-04-07 18:20:30,434 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4e0e2cf9) on GBY[42]
2015-04-07 18:20:30,434 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4aab778) on SEL[43]
2015-04-07 18:20:30,434 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@63f329ac) on UNION[88]
2015-04-07 18:20:30,435 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@71350e77) on GBY[136]
2015-04-07 18:20:30,435 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5248e0b1) on RS[137]
2015-04-07 18:20:30,435 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e97aeab) on GBY[138]
2015-04-07 18:20:30,438 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@684c7472) on SEL[139]
2015-04-07 18:20:30,438 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@41630b53) on RS[140]
2015-04-07 18:20:30,439 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d7c97ae) on SEL[141]
2015-04-07 18:20:30,439 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d7c97ae) on LIM[142]
2015-04-07 18:20:30,439 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d7c97ae) on FS[143]
2015-04-07 18:20:30,440 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #119
2015-04-07 18:20:30,442 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #119
2015-04-07 18:20:30,442 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 2ms
2015-04-07 18:20:30,497 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3615b04c) on TS[44]
2015-04-07 18:20:30,497 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3615b04c) on FIL[207]
2015-04-07 18:20:30,497 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@49e96951) on SEL[45]
2015-04-07 18:20:30,498 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b016abf) on RS[59]
2015-04-07 18:20:30,498 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1a0760b0) on RS[60]
2015-04-07 18:20:30,498 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5a5cd029) on JOIN[61]
2015-04-07 18:20:30,498 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3666218) on RS[63]
2015-04-07 18:20:30,499 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@36b21766) on RS[65]
2015-04-07 18:20:30,499 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@661e4597) on JOIN[66]
2015-04-07 18:20:30,499 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d6af0e1) on RS[68]
2015-04-07 18:20:30,500 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@27ec6b7c) on RS[70]
2015-04-07 18:20:30,500 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1284ae5e) on JOIN[71]
2015-04-07 18:20:30,500 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@44d3a6d1) on RS[73]
2015-04-07 18:20:30,500 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@236d06a4) on RS[75]
2015-04-07 18:20:30,501 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4acf0b27) on JOIN[76]
2015-04-07 18:20:30,501 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5ee553cf) on RS[78]
2015-04-07 18:20:30,501 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@21e16bb5) on RS[80]
2015-04-07 18:20:30,501 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@56664973) on JOIN[81]
2015-04-07 18:20:30,502 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@55604955) on SEL[82]
2015-04-07 18:20:30,502 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@246e973d) on GBY[84]
2015-04-07 18:20:30,502 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@588b387a) on RS[85]
2015-04-07 18:20:30,503 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c28ff00) on GBY[86]
2015-04-07 18:20:30,503 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@477d6771) on SEL[87]
2015-04-07 18:20:30,503 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7a125061) on UNION[88]
2015-04-07 18:20:30,504 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@485b4ee3) on GBY[136]
2015-04-07 18:20:30,504 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@62983e31) on RS[137]
2015-04-07 18:20:30,507 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@718bd49c) on GBY[138]
2015-04-07 18:20:30,507 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@13338801) on SEL[139]
2015-04-07 18:20:30,507 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c260380) on RS[140]
2015-04-07 18:20:30,508 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3afd6f0) on SEL[141]
2015-04-07 18:20:30,508 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3afd6f0) on LIM[142]
2015-04-07 18:20:30,509 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3afd6f0) on FS[143]
2015-04-07 18:20:30,509 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #120
2015-04-07 18:20:30,510 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #120
2015-04-07 18:20:30,511 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 2ms
2015-04-07 18:20:30,527 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7c57de7b) on TS[46]
2015-04-07 18:20:30,527 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7c57de7b) on FIL[208]
2015-04-07 18:20:30,527 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6ccf9d03) on SEL[47]
2015-04-07 18:20:30,528 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@324d67c4) on RS[60]
2015-04-07 18:20:30,528 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@77d78ea8) on JOIN[61]
2015-04-07 18:20:30,528 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@68d6f50f) on RS[63]
2015-04-07 18:20:30,528 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7872e18e) on JOIN[66]
2015-04-07 18:20:30,529 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3e366f69) on RS[68]
2015-04-07 18:20:30,529 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@67cc7667) on JOIN[71]
2015-04-07 18:20:30,529 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2071996e) on RS[73]
2015-04-07 18:20:30,530 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2101566) on JOIN[76]
2015-04-07 18:20:30,531 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@336a2624) on RS[78]
2015-04-07 18:20:30,532 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7dee1fda) on JOIN[81]
2015-04-07 18:20:30,532 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c6d61cd) on SEL[82]
2015-04-07 18:20:30,532 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@512fe84f) on GBY[84]
2015-04-07 18:20:30,533 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@203cc42d) on RS[85]
2015-04-07 18:20:30,533 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@757376e3) on GBY[86]
2015-04-07 18:20:30,533 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6f826d52) on SEL[87]
2015-04-07 18:20:30,534 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5bd75baf) on UNION[88]
2015-04-07 18:20:30,534 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@17c46d44) on GBY[136]
2015-04-07 18:20:30,534 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@60e1978c) on RS[137]
2015-04-07 18:20:30,535 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7aa49a04) on GBY[138]
2015-04-07 18:20:30,535 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4c7bbb83) on SEL[139]
2015-04-07 18:20:30,535 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4f53bcaf) on RS[140]
2015-04-07 18:20:30,536 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@288add9) on SEL[141]
2015-04-07 18:20:30,536 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@288add9) on LIM[142]
2015-04-07 18:20:30,537 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@288add9) on FS[143]
2015-04-07 18:20:30,537 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #121
2015-04-07 18:20:30,538 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #121
2015-04-07 18:20:30,538 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,539 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3dca26b1) on TS[48]
2015-04-07 18:20:30,539 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3dca26b1) on FIL[209]
2015-04-07 18:20:30,539 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@22b24e28) on SEL[50]
2015-04-07 18:20:30,540 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@682935e3) on RS[65]
2015-04-07 18:20:30,540 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6990ff81) on JOIN[66]
2015-04-07 18:20:30,540 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e76a44c) on RS[68]
2015-04-07 18:20:30,540 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6f1c9168) on JOIN[71]
2015-04-07 18:20:30,540 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3c8e7bd5) on RS[73]
2015-04-07 18:20:30,542 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@635525c5) on JOIN[76]
2015-04-07 18:20:30,542 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6b22db75) on RS[78]
2015-04-07 18:20:30,543 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3d761546) on JOIN[81]
2015-04-07 18:20:30,543 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@136ec630) on SEL[82]
2015-04-07 18:20:30,543 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d958347) on GBY[84]
2015-04-07 18:20:30,543 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@12ddd21c) on RS[85]
2015-04-07 18:20:30,543 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@210d35f1) on GBY[86]
2015-04-07 18:20:30,544 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6a50722a) on SEL[87]
2015-04-07 18:20:30,544 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@477759ed) on UNION[88]
2015-04-07 18:20:30,544 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6cb0fb42) on GBY[136]
2015-04-07 18:20:30,544 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@573fe1cd) on RS[137]
2015-04-07 18:20:30,544 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2301867b) on GBY[138]
2015-04-07 18:20:30,545 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@39240731) on SEL[139]
2015-04-07 18:20:30,545 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6c543f45) on RS[140]
2015-04-07 18:20:30,545 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@f060293) on SEL[141]
2015-04-07 18:20:30,545 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@f060293) on LIM[142]
2015-04-07 18:20:30,546 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@f060293) on FS[143]
2015-04-07 18:20:30,546 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #122
2015-04-07 18:20:30,547 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #122
2015-04-07 18:20:30,547 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,548 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5a199fac) on TS[51]
2015-04-07 18:20:30,548 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5a199fac) on FIL[210]
2015-04-07 18:20:30,548 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4842036a) on SEL[52]
2015-04-07 18:20:30,548 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65ee4935) on RS[70]
2015-04-07 18:20:30,548 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7f086ada) on JOIN[71]
2015-04-07 18:20:30,548 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@19f4f5e) on RS[73]
2015-04-07 18:20:30,549 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@213a527) on JOIN[76]
2015-04-07 18:20:30,549 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@57bfa481) on RS[78]
2015-04-07 18:20:30,549 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@66c93e28) on JOIN[81]
2015-04-07 18:20:30,549 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@260fe8d0) on SEL[82]
2015-04-07 18:20:30,549 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5e7dc335) on GBY[84]
2015-04-07 18:20:30,549 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@129afd0a) on RS[85]
2015-04-07 18:20:30,551 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4713aedb) on GBY[86]
2015-04-07 18:20:30,551 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5d3cd051) on SEL[87]
2015-04-07 18:20:30,551 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4390a5a9) on UNION[88]
2015-04-07 18:20:30,552 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4d6c1ce6) on GBY[136]
2015-04-07 18:20:30,552 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@74dd67bf) on RS[137]
2015-04-07 18:20:30,552 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@73c66889) on GBY[138]
2015-04-07 18:20:30,552 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@66f935c0) on SEL[139]
2015-04-07 18:20:30,553 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@73380510) on RS[140]
2015-04-07 18:20:30,553 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@62d49888) on SEL[141]
2015-04-07 18:20:30,553 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@62d49888) on LIM[142]
2015-04-07 18:20:30,553 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@62d49888) on FS[143]
2015-04-07 18:20:30,554 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #123
2015-04-07 18:20:30,555 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #123
2015-04-07 18:20:30,555 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,555 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4362640a) on TS[53]
2015-04-07 18:20:30,555 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4362640a) on FIL[211]
2015-04-07 18:20:30,555 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7095ef15) on SEL[55]
2015-04-07 18:20:30,556 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3838572) on RS[75]
2015-04-07 18:20:30,556 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2fae012b) on JOIN[76]
2015-04-07 18:20:30,556 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@48cec681) on RS[78]
2015-04-07 18:20:30,556 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7f4a647e) on JOIN[81]
2015-04-07 18:20:30,556 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d0bcd7b) on SEL[82]
2015-04-07 18:20:30,556 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@21df7e2b) on GBY[84]
2015-04-07 18:20:30,557 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@57d44a6c) on RS[85]
2015-04-07 18:20:30,557 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@32622580) on GBY[86]
2015-04-07 18:20:30,557 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@498c1057) on SEL[87]
2015-04-07 18:20:30,557 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@a84e57a) on UNION[88]
2015-04-07 18:20:30,557 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1af5b1fb) on GBY[136]
2015-04-07 18:20:30,558 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7877e390) on RS[137]
2015-04-07 18:20:30,558 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6fd40ba) on GBY[138]
2015-04-07 18:20:30,558 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5ca476eb) on SEL[139]
2015-04-07 18:20:30,558 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@317b6dd1) on RS[140]
2015-04-07 18:20:30,560 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5fcaae15) on SEL[141]
2015-04-07 18:20:30,560 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5fcaae15) on LIM[142]
2015-04-07 18:20:30,560 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5fcaae15) on FS[143]
2015-04-07 18:20:30,561 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #124
2015-04-07 18:20:30,562 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #124
2015-04-07 18:20:30,562 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,562 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b664c7e) on TS[56]
2015-04-07 18:20:30,562 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b664c7e) on FIL[212]
2015-04-07 18:20:30,563 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7928237c) on SEL[58]
2015-04-07 18:20:30,563 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3a31e008) on RS[80]
2015-04-07 18:20:30,563 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@206b4b11) on JOIN[81]
2015-04-07 18:20:30,563 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@640d59b7) on SEL[82]
2015-04-07 18:20:30,563 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@287d30b2) on GBY[84]
2015-04-07 18:20:30,564 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@33080ae2) on RS[85]
2015-04-07 18:20:30,564 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5502959a) on GBY[86]
2015-04-07 18:20:30,564 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1cabdd10) on SEL[87]
2015-04-07 18:20:30,564 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@573e5424) on UNION[88]
2015-04-07 18:20:30,564 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3d06343b) on GBY[136]
2015-04-07 18:20:30,565 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@624f2cc9) on RS[137]
2015-04-07 18:20:30,565 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3c05728b) on GBY[138]
2015-04-07 18:20:30,565 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@9a32276) on SEL[139]
2015-04-07 18:20:30,565 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@352b75eb) on RS[140]
2015-04-07 18:20:30,566 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@384ab292) on SEL[141]
2015-04-07 18:20:30,566 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@384ab292) on LIM[142]
2015-04-07 18:20:30,566 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@384ab292) on FS[143]
2015-04-07 18:20:30,567 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #125
2015-04-07 18:20:30,568 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #125
2015-04-07 18:20:30,569 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 2ms
2015-04-07 18:20:30,604 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@34da3db6) on TS[90]
2015-04-07 18:20:30,604 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@34da3db6) on FIL[213]
2015-04-07 18:20:30,605 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@640992d5) on SEL[91]
2015-04-07 18:20:30,605 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@30871142) on RS[105]
2015-04-07 18:20:30,605 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@737e1cf1) on RS[106]
2015-04-07 18:20:30,605 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5c9e4d73) on JOIN[107]
2015-04-07 18:20:30,606 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1ceee886) on RS[109]
2015-04-07 18:20:30,606 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@8e3c441) on RS[111]
2015-04-07 18:20:30,606 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@21698bf6) on JOIN[112]
2015-04-07 18:20:30,606 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1863d49d) on RS[114]
2015-04-07 18:20:30,607 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@421b9bed) on RS[116]
2015-04-07 18:20:30,607 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@229a0683) on JOIN[117]
2015-04-07 18:20:30,607 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e219434) on RS[119]
2015-04-07 18:20:30,609 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4cb8bee4) on RS[121]
2015-04-07 18:20:30,609 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@74fc9215) on JOIN[122]
2015-04-07 18:20:30,610 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@71dadcb3) on RS[124]
2015-04-07 18:20:30,610 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@57cfa62a) on RS[126]
2015-04-07 18:20:30,610 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1a63c70) on JOIN[127]
2015-04-07 18:20:30,611 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@48c9dde8) on SEL[128]
2015-04-07 18:20:30,611 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3d07cfad) on GBY[130]
2015-04-07 18:20:30,611 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4bd38628) on RS[131]
2015-04-07 18:20:30,612 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c0cd2fc) on GBY[132]
2015-04-07 18:20:30,612 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7defb4fb) on SEL[133]
2015-04-07 18:20:30,612 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4530b55) on UNION[88]
2015-04-07 18:20:30,613 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@680cfbaa) on GBY[136]
2015-04-07 18:20:30,613 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c5e8b44) on RS[137]
2015-04-07 18:20:30,613 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7309341d) on GBY[138]
2015-04-07 18:20:30,614 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@613c96eb) on SEL[139]
2015-04-07 18:20:30,614 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@50d8502c) on RS[140]
2015-04-07 18:20:30,615 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2977a22b) on SEL[141]
2015-04-07 18:20:30,615 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2977a22b) on LIM[142]
2015-04-07 18:20:30,615 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2977a22b) on FS[143]
2015-04-07 18:20:30,616 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #126
2015-04-07 18:20:30,617 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #126
2015-04-07 18:20:30,618 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,627 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65ef598f) on TS[92]
2015-04-07 18:20:30,627 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65ef598f) on FIL[214]
2015-04-07 18:20:30,627 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@44e0ef91) on SEL[93]
2015-04-07 18:20:30,627 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@b903beb) on RS[106]
2015-04-07 18:20:30,628 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2a4dc73b) on JOIN[107]
2015-04-07 18:20:30,628 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5853082f) on RS[109]
2015-04-07 18:20:30,628 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@333e72f6) on JOIN[112]
2015-04-07 18:20:30,628 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@48ed8ec2) on RS[114]
2015-04-07 18:20:30,628 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@643787f5) on JOIN[117]
2015-04-07 18:20:30,628 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@79bf1939) on RS[119]
2015-04-07 18:20:30,629 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@71112ba0) on JOIN[122]
2015-04-07 18:20:30,629 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1e474f5e) on RS[124]
2015-04-07 18:20:30,629 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5babb3d9) on JOIN[127]
2015-04-07 18:20:30,629 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65ac9a93) on SEL[128]
2015-04-07 18:20:30,629 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@26d85d0b) on GBY[130]
2015-04-07 18:20:30,630 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@46c49119) on RS[131]
2015-04-07 18:20:30,630 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1312249b) on GBY[132]
2015-04-07 18:20:30,630 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@c2145e5) on SEL[133]
2015-04-07 18:20:30,630 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5c73c39b) on UNION[88]
2015-04-07 18:20:30,630 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@342f2488) on GBY[136]
2015-04-07 18:20:30,631 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@307777c) on RS[137]
2015-04-07 18:20:30,631 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5f356f71) on GBY[138]
2015-04-07 18:20:30,631 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2d27948c) on SEL[139]
2015-04-07 18:20:30,631 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1898a7d) on RS[140]
2015-04-07 18:20:30,632 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6ce31554) on SEL[141]
2015-04-07 18:20:30,633 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6ce31554) on LIM[142]
2015-04-07 18:20:30,634 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6ce31554) on FS[143]
2015-04-07 18:20:30,634 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #127
2015-04-07 18:20:30,635 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #127
2015-04-07 18:20:30,635 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,636 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@19dfdac9) on TS[94]
2015-04-07 18:20:30,636 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@19dfdac9) on FIL[215]
2015-04-07 18:20:30,636 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3794cf64) on SEL[95]
2015-04-07 18:20:30,636 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@abbcabe) on RS[111]
2015-04-07 18:20:30,636 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2efb8573) on JOIN[112]
2015-04-07 18:20:30,636 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2f6591e) on RS[114]
2015-04-07 18:20:30,637 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b54c216) on JOIN[117]
2015-04-07 18:20:30,637 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7992719b) on RS[119]
2015-04-07 18:20:30,637 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7d60b577) on JOIN[122]
2015-04-07 18:20:30,637 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5829d7ef) on RS[124]
2015-04-07 18:20:30,637 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@231fb921) on JOIN[127]
2015-04-07 18:20:30,638 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@77b3378a) on SEL[128]
2015-04-07 18:20:30,638 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1703826b) on GBY[130]
2015-04-07 18:20:30,638 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@67674a9a) on RS[131]
2015-04-07 18:20:30,638 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e52f97f) on GBY[132]
2015-04-07 18:20:30,638 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@497a189b) on SEL[133]
2015-04-07 18:20:30,639 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6ee58dcc) on UNION[88]
2015-04-07 18:20:30,639 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@20c084f5) on GBY[136]
2015-04-07 18:20:30,639 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3f59019f) on RS[137]
2015-04-07 18:20:30,639 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6c798e36) on GBY[138]
2015-04-07 18:20:30,639 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2067b2dd) on SEL[139]
2015-04-07 18:20:30,640 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@780fdbc9) on RS[140]
2015-04-07 18:20:30,640 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5926a6b3) on SEL[141]
2015-04-07 18:20:30,640 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5926a6b3) on LIM[142]
2015-04-07 18:20:30,642 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5926a6b3) on FS[143]
2015-04-07 18:20:30,643 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #128
2015-04-07 18:20:30,644 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #128
2015-04-07 18:20:30,644 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,644 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7c18c4b2) on TS[96]
2015-04-07 18:20:30,645 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7c18c4b2) on FIL[216]
2015-04-07 18:20:30,645 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3e19c1c4) on SEL[98]
2015-04-07 18:20:30,645 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@d004ab6) on RS[116]
2015-04-07 18:20:30,645 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@e28f965) on JOIN[117]
2015-04-07 18:20:30,645 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@240d5d26) on RS[119]
2015-04-07 18:20:30,645 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@695e7c47) on JOIN[122]
2015-04-07 18:20:30,646 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3a314f5c) on RS[124]
2015-04-07 18:20:30,646 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b513edc) on JOIN[127]
2015-04-07 18:20:30,646 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@12f61cc4) on SEL[128]
2015-04-07 18:20:30,646 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5bda9195) on GBY[130]
2015-04-07 18:20:30,646 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6a8bfc4f) on RS[131]
2015-04-07 18:20:30,647 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@c61dd2f) on GBY[132]
2015-04-07 18:20:30,647 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d003f02) on SEL[133]
2015-04-07 18:20:30,647 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2b28d436) on UNION[88]
2015-04-07 18:20:30,647 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5843b5d) on GBY[136]
2015-04-07 18:20:30,647 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c55597f) on RS[137]
2015-04-07 18:20:30,648 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1766b796) on GBY[138]
2015-04-07 18:20:30,648 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@589ee4da) on SEL[139]
2015-04-07 18:20:30,648 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@27c2d1aa) on RS[140]
2015-04-07 18:20:30,648 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6753044a) on SEL[141]
2015-04-07 18:20:30,649 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6753044a) on LIM[142]
2015-04-07 18:20:30,649 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6753044a) on FS[143]
2015-04-07 18:20:30,649 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #129
2015-04-07 18:20:30,650 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #129
2015-04-07 18:20:30,650 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,651 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@57931c92) on TS[99]
2015-04-07 18:20:30,651 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@57931c92) on FIL[217]
2015-04-07 18:20:30,651 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7b38e228) on SEL[101]
2015-04-07 18:20:30,651 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5387ef4b) on RS[121]
2015-04-07 18:20:30,651 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@16f4fc5) on JOIN[122]
2015-04-07 18:20:30,651 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@32de0f3f) on RS[124]
2015-04-07 18:20:30,652 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@10bb0b30) on JOIN[127]
2015-04-07 18:20:30,652 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@67db84e4) on SEL[128]
2015-04-07 18:20:30,652 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7cf1ca00) on GBY[130]
2015-04-07 18:20:30,655 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2f536153) on RS[131]
2015-04-07 18:20:30,655 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@b1aa86b) on GBY[132]
2015-04-07 18:20:30,655 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3270e7f) on SEL[133]
2015-04-07 18:20:30,656 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7928b576) on UNION[88]
2015-04-07 18:20:30,656 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5fa1941e) on GBY[136]
2015-04-07 18:20:30,656 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@69036e9e) on RS[137]
2015-04-07 18:20:30,656 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@60537cee) on GBY[138]
2015-04-07 18:20:30,657 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@92f1eaa) on SEL[139]
2015-04-07 18:20:30,657 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@74862f9b) on RS[140]
2015-04-07 18:20:30,657 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@159fa4e1) on SEL[141]
2015-04-07 18:20:30,657 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@159fa4e1) on LIM[142]
2015-04-07 18:20:30,658 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@159fa4e1) on FS[143]
2015-04-07 18:20:30,658 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #130
2015-04-07 18:20:30,659 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #130
2015-04-07 18:20:30,659 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: getListing took 1ms
2015-04-07 18:20:30,660 DEBUG [main]: exec.TableScanOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d935749) on TS[102]
2015-04-07 18:20:30,660 DEBUG [main]: exec.FilterOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6d935749) on FIL[218]
2015-04-07 18:20:30,660 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6447b1d2) on SEL[104]
2015-04-07 18:20:30,660 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1eeb856d) on RS[126]
2015-04-07 18:20:30,661 DEBUG [main]: exec.JoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7884c6f6) on JOIN[127]
2015-04-07 18:20:30,661 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@55227e4a) on SEL[128]
2015-04-07 18:20:30,661 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4b9157f0) on GBY[130]
2015-04-07 18:20:30,661 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@33247452) on RS[131]
2015-04-07 18:20:30,661 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1e50cdb9) on GBY[132]
2015-04-07 18:20:30,662 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4af23c3b) on SEL[133]
2015-04-07 18:20:30,662 DEBUG [main]: exec.UnionOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@65506bed) on UNION[88]
2015-04-07 18:20:30,662 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2ddc892) on GBY[136]
2015-04-07 18:20:30,662 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2e9aeab6) on RS[137]
2015-04-07 18:20:30,663 DEBUG [main]: exec.GroupByOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3ca76aa1) on GBY[138]
2015-04-07 18:20:30,663 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@13498f23) on SEL[139]
2015-04-07 18:20:30,663 DEBUG [main]: exec.ReduceSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@42544cb9) on RS[140]
2015-04-07 18:20:30,663 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c7927b4) on SEL[141]
2015-04-07 18:20:30,664 DEBUG [main]: exec.LimitOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c7927b4) on LIM[142]
2015-04-07 18:20:30,664 DEBUG [main]: exec.FileSinkOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@2c7927b4) on FS[143]
2015-04-07 18:20:30,674 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[15] to: 154
2015-04-07 18:20:30,675 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[16] to: 154
2015-04-07 18:20:30,676 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[21] to: 1
2015-04-07 18:20:30,676 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[26] to: 1
2015-04-07 18:20:30,676 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[31] to: 1
2015-04-07 18:20:30,676 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[36] to: 1
2015-04-07 18:20:30,677 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[59] to: 85
2015-04-07 18:20:30,677 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[60] to: 85
2015-04-07 18:20:30,677 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[65] to: 1
2015-04-07 18:20:30,677 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[70] to: 1
2015-04-07 18:20:30,678 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[75] to: 1
2015-04-07 18:20:30,678 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[80] to: 1
2015-04-07 18:20:30,678 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[105] to: 43
2015-04-07 18:20:30,679 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[106] to: 43
2015-04-07 18:20:30,679 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[111] to: 1
2015-04-07 18:20:30,679 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[116] to: 1
2015-04-07 18:20:30,679 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[121] to: 1
2015-04-07 18:20:30,680 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[126] to: 1
2015-04-07 18:20:30,681 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,685 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:checkConvertJoinSMBJoin(383)) - We cannot convert to SMB because the sort column names do not match.
2015-04-07 18:20:30,686 DEBUG [main]: exec.CommonMergeJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@31cd4be4) on MERGEJOIN[219]
2015-04-07 18:20:30,686 DEBUG [main]: exec.CommonMergeJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 8686 Data size: 277952 Basic stats: COMPLETE Column stats: COMPLETE) on MERGEJOIN[219]
2015-04-07 18:20:30,686 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[19] to: 1
2015-04-07 18:20:30,687 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,687 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,688 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1c9b1d4a) on MAPJOIN[220]
2015-04-07 18:20:30,688 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 4343 Data size: 121604 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[220]
2015-04-07 18:20:30,688 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[24] to: 1
2015-04-07 18:20:30,688 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,688 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,689 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@32489ad4) on MAPJOIN[221]
2015-04-07 18:20:30,689 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1448 Data size: 34752 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[221]
2015-04-07 18:20:30,689 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[29] to: 1
2015-04-07 18:20:30,689 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,690 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,690 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7d430578) on MAPJOIN[222]
2015-04-07 18:20:30,690 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 14480 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[222]
2015-04-07 18:20:30,690 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[34] to: 1
2015-04-07 18:20:30,690 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,691 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,691 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3e1f5c62) on MAPJOIN[223]
2015-04-07 18:20:30,691 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 724 Data size: 83984 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[223]
2015-04-07 18:20:30,691 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7cea45ca) on SEL[38]
2015-04-07 18:20:30,691 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,692 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,694 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@7613766d) on MAPJOIN[224]
2015-04-07 18:20:30,694 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2911 Data size: 93152 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[224]
2015-04-07 18:20:30,695 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[63] to: 1
2015-04-07 18:20:30,695 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,695 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,696 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6fcd3c53) on MAPJOIN[225]
2015-04-07 18:20:30,696 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 40768 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[225]
2015-04-07 18:20:30,696 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[68] to: 1
2015-04-07 18:20:30,696 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,696 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,697 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@6bf75e49) on MAPJOIN[226]
2015-04-07 18:20:30,697 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1456 Data size: 180544 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[226]
2015-04-07 18:20:30,697 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[73] to: 1
2015-04-07 18:20:30,697 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,697 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,698 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@1e75ebcb) on MAPJOIN[227]
2015-04-07 18:20:30,698 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 486 Data size: 58320 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[227]
2015-04-07 18:20:30,698 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[78] to: 1
2015-04-07 18:20:30,698 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,698 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,699 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@3422b0c1) on MAPJOIN[228]
2015-04-07 18:20:30,699 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 243 Data size: 28188 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[228]
2015-04-07 18:20:30,699 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@518269a4) on SEL[82]
2015-04-07 18:20:30,699 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,699 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,700 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@48e5b7ca) on MAPJOIN[229]
2015-04-07 18:20:30,700 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 68928 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[229]
2015-04-07 18:20:30,700 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[109] to: 1
2015-04-07 18:20:30,700 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,701 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,701 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@785881c3) on MAPJOIN[230]
2015-04-07 18:20:30,701 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 2154 Data size: 275712 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[230]
2015-04-07 18:20:30,701 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[114] to: 1
2015-04-07 18:20:30,701 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,702 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,702 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@118ed22f) on MAPJOIN[231]
2015-04-07 18:20:30,702 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 1077 Data size: 133548 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[231]
2015-04-07 18:20:30,702 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[119] to: 1
2015-04-07 18:20:30,703 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,703 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,703 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@8abc162) on MAPJOIN[232]
2015-04-07 18:20:30,703 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 359 Data size: 43080 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[232]
2015-04-07 18:20:30,704 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[124] to: 1
2015-04-07 18:20:30,704 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(129)) - Estimated number of buckets 1
2015-04-07 18:20:30,704 INFO [main]: optimizer.ConvertJoinMapJoin (ConvertJoinMapJoin.java:process(151)) - Convert to non-bucketed map join
2015-04-07 18:20:30,704 DEBUG [main]: exec.MapJoinOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@5c913c93) on MAPJOIN[233]
2015-04-07 18:20:30,704 DEBUG [main]: exec.MapJoinOperator (Operator.java:setStatistics(1321)) - Setting stats (Num rows: 180 Data size: 20880 Basic stats: COMPLETE Column stats: COMPLETE) on MAPJOIN[233]
2015-04-07 18:20:30,705 DEBUG [main]: exec.SelectOperator (Operator.java:setOpTraits(1310)) - Setting traits (org.apache.hadoop.hive.ql.plan.OpTraits@4320065f) on SEL[128]
2015-04-07 18:20:30,705 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[41] to: 1
2015-04-07 18:20:30,705 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[85] to: 1
2015-04-07 18:20:30,705 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[131] to: 1
2015-04-07 18:20:30,705 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(96)) - Set parallelism for reduce sink RS[137] to: 1
2015-04-07 18:20:30,706 INFO [main]: optimizer.SetReducerParallelism (SetReducerParallelism.java:process(108)) - Number of reducers determined to be: 1
2015-04-07 18:20:30,710 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,710 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 102
2015-04-07 18:20:30,710 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,710 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 218
2015-04-07 18:20:30,710 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 104
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 126
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 99
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 217
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 101
2015-04-07 18:20:30,711 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 121
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 96
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 216
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 98
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 116
2015-04-07 18:20:30,712 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 94
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 82
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 84
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 85
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 86
2015-04-07 18:20:30,713 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 87
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 13
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 206
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 14
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,714 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 10
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 205
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 12
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 31
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 7
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,715 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 204
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 9
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 26
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 4
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 203
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,716 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 6
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 21
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 2
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 202
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 3
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,717 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 16
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 41
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 42
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 43
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: UNION, 88
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,718 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 136
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 137
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 138
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 139
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 140
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,719 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 141
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: LIM, 142
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FS, 143
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 40
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 38
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,720 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 223
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 34
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 222
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 221
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 220
2015-04-07 18:20:30,721 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MERGEJOIN, 219
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 15
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 1
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 201
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 0
2015-04-07 18:20:30,722 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 228
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 227
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 226
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 68
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 225
2015-04-07 18:20:30,723 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 63
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 224
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 45
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 207
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 44
2015-04-07 18:20:30,724 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 60
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 47
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 208
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 46
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 50
2015-04-07 18:20:30,725 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 209
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 48
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 52
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 210
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 51
2015-04-07 18:20:30,726 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 75
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 55
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 211
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 53
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 80
2015-04-07 18:20:30,727 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 58
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 212
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 56
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 133
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 132
2015-04-07 18:20:30,728 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 131
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: GBY, 130
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 128
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 233
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,729 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 232
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 231
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 230
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: MAPJOIN, 229
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 91
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,730 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 213
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 90
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 106
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 93
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 214
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,731 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: TS, 92
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: RS, 111
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: SEL, 95
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(144)) - Component:
2015-04-07 18:20:30,732 DEBUG [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(146)) - Operator: FIL, 215
2015-04-07 18:20:30,732 INFO [main]: parse.TezCompiler (TezCompiler.java:runCycleAnalysisForPartitionPruning(156)) - Cycle free: true
2015-04-07 18:20:30,752 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[0]
2015-04-07 18:20:30,752 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[15]
2015-04-07 18:20:30,753 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 1) for TS[0]
2015-04-07 18:20:30,761 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_sales { i32 ss_sold_date_sk, i32 ss_sold_time_sk, i32 ss_item_sk, i32 ss_customer_sk, i32 ss_cdemo_sk, i32 ss_hdemo_sk, i32 ss_addr_sk, i32 ss_store_sk, i32 ss_promo_sk, i32 ss_ticket_number, i32 ss_quantity, float ss_wholesale_cost, float ss_list_price, float ss_sales_price, float ss_ext_discount_amt, float ss_ext_sales_price, float ss_ext_wholesale_cost, float ss_ext_list_price, float ss_ext_tax, float ss_coupon_amt, float ss_net_paid, float ss_net_paid_inc_tax, float ss_net_profit, string ss_sold_date}
2015-04-07 18:20:30,766 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_sales { i32 ss_sold_date_sk, i32 ss_sold_time_sk, i32 ss_item_sk, i32 ss_customer_sk, i32 ss_cdemo_sk, i32 ss_hdemo_sk, i32 ss_addr_sk, i32 ss_store_sk, i32 ss_promo_sk, i32 ss_ticket_number, i32 ss_quantity, float ss_wholesale_cost, float ss_list_price, float ss_sales_price, float ss_ext_discount_amt, float ss_ext_sales_price, float ss_ext_wholesale_cost, float ss_ext_list_price, float ss_ext_tax, float ss_coupon_amt, float ss_net_paid, float ss_net_paid_inc_tax, float ss_net_profit, string ss_sold_date}
2015-04-07 18:20:30,766 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_sales { i32 ss_sold_date_sk, i32 ss_sold_time_sk, i32 ss_item_sk, i32 ss_customer_sk, i32 ss_cdemo_sk, i32 ss_hdemo_sk, i32 ss_addr_sk, i32 ss_store_sk, i32 ss_promo_sk, i32 ss_ticket_number, i32 ss_quantity, float ss_wholesale_cost, float ss_list_price, float ss_sales_price, float ss_ext_discount_amt, float ss_ext_sales_price, float ss_ext_wholesale_cost, float ss_ext_list_price, float ss_ext_tax, float ss_coupon_amt, float ss_net_paid, float ss_net_paid_inc_tax, float ss_net_profit, string ss_sold_date}
2015-04-07 18:20:30,767 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales of tablestore_sales
2015-04-07 18:20:30,767 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales
2015-04-07 18:20:30,767 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[15]
2015-04-07 18:20:30,768 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: MERGEJOIN[219]
2015-04-07 18:20:30,768 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[34]
2015-04-07 18:20:30,768 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 2) for MERGEJOIN[219]
2015-04-07 18:20:30,768 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[15] with following reduce work: Reducer 2
2015-04-07 18:20:30,776 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[220]
2015-04-07 18:20:30,776 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[221]
2015-04-07 18:20:30,776 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[222]
2015-04-07 18:20:30,776 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[15] as parent from MERGEJOIN[219]
2015-04-07 18:20:30,776 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[16] as parent from MERGEJOIN[219]
2015-04-07 18:20:30,777 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[34]
2015-04-07 18:20:30,777 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[223], pos: 0 --> Reducer 2 (724 keys estimated from 724 rows, 1 buckets)
2015-04-07 18:20:30,778 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[2]
2015-04-07 18:20:30,778 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[16]
2015-04-07 18:20:30,778 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 3) for TS[2]
2015-04-07 18:20:30,778 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_returns { i32 sr_returned_date_sk, i32 sr_return_time_sk, i32 sr_item_sk, i32 sr_customer_sk, i32 sr_cdemo_sk, i32 sr_hdemo_sk, i32 sr_addr_sk, i32 sr_store_sk, i32 sr_reason_sk, i32 sr_ticket_number, i32 sr_return_quantity, float sr_return_amt, float sr_return_tax, float sr_return_amt_inc_tax, float sr_fee, float sr_return_ship_cost, float sr_refunded_cash, float sr_reversed_charge, float sr_store_credit, float sr_net_loss, string sr_returned_date}
2015-04-07 18:20:30,778 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_returns { i32 sr_returned_date_sk, i32 sr_return_time_sk, i32 sr_item_sk, i32 sr_customer_sk, i32 sr_cdemo_sk, i32 sr_hdemo_sk, i32 sr_addr_sk, i32 sr_store_sk, i32 sr_reason_sk, i32 sr_ticket_number, i32 sr_return_quantity, float sr_return_amt, float sr_return_tax, float sr_return_amt_inc_tax, float sr_fee, float sr_return_ship_cost, float sr_refunded_cash, float sr_reversed_charge, float sr_store_credit, float sr_net_loss, string sr_returned_date}
2015-04-07 18:20:30,779 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store_returns { i32 sr_returned_date_sk, i32 sr_return_time_sk, i32 sr_item_sk, i32 sr_customer_sk, i32 sr_cdemo_sk, i32 sr_hdemo_sk, i32 sr_addr_sk, i32 sr_store_sk, i32 sr_reason_sk, i32 sr_ticket_number, i32 sr_return_quantity, float sr_return_amt, float sr_return_tax, float sr_return_amt_inc_tax, float sr_fee, float sr_return_ship_cost, float sr_refunded_cash, float sr_reversed_charge, float sr_store_credit, float sr_net_loss, string sr_returned_date}
2015-04-07 18:20:30,779 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns of tablestore_returns
2015-04-07 18:20:30,779 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns
2015-04-07 18:20:30,780 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(321)) - Second pass. Leaf operator: RS[16] has common downstream work:org.apache.hadoop.hive.ql.plan.MergeJoinWork@d4062aa
2015-04-07 18:20:30,780 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[4]
2015-04-07 18:20:30,780 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[21]
2015-04-07 18:20:30,780 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 4) for TS[4]
2015-04-07 18:20:30,780 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,781 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,781 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,781 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim of tabledate_dim
2015-04-07 18:20:30,781 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim
2015-04-07 18:20:30,782 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[21]
2015-04-07 18:20:30,782 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[220], pos: 1 --> Map 4 (36524 keys estimated from 36524 rows, 1 buckets)
2015-04-07 18:20:30,782 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 4 with Reducer 2
2015-04-07 18:20:30,783 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[7]
2015-04-07 18:20:30,783 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[26]
2015-04-07 18:20:30,783 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 5) for TS[7]
2015-04-07 18:20:30,783 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,784 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,784 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,785 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item of tableitem
2015-04-07 18:20:30,785 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item
2015-04-07 18:20:30,785 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[26]
2015-04-07 18:20:30,786 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[221], pos: 1 --> Map 5 (16000 keys estimated from 16000 rows, 1 buckets)
2015-04-07 18:20:30,786 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 5 with Reducer 2
2015-04-07 18:20:30,786 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[10]
2015-04-07 18:20:30,786 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[31]
2015-04-07 18:20:30,787 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 6) for TS[10]
2015-04-07 18:20:30,787 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,787 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,788 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,788 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion of tablepromotion
2015-04-07 18:20:30,788 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion
2015-04-07 18:20:30,789 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[31]
2015-04-07 18:20:30,789 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[222], pos: 1 --> Map 6 (225 keys estimated from 225 rows, 1 buckets)
2015-04-07 18:20:30,789 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 6 with Reducer 2
2015-04-07 18:20:30,789 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[13]
2015-04-07 18:20:30,789 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[41]
2015-04-07 18:20:30,789 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 7) for TS[13]
2015-04-07 18:20:30,790 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store { i32 s_store_sk, string s_store_id, string s_rec_start_date, string s_rec_end_date, i32 s_closed_date_sk, string s_store_name, i32 s_number_employees, i32 s_floor_space, string s_hours, string s_manager, i32 s_market_id, string s_geography_class, string s_market_desc, string s_market_manager, i32 s_division_id, string s_division_name, i32 s_company_id, string s_company_name, string s_street_number, string s_street_name, string s_street_type, string s_suite_number, string s_city, string s_county, string s_state, string s_zip, string s_country, float s_gmt_offset, float s_tax_precentage}
2015-04-07 18:20:30,790 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store { i32 s_store_sk, string s_store_id, string s_rec_start_date, string s_rec_end_date, i32 s_closed_date_sk, string s_store_name, i32 s_number_employees, i32 s_floor_space, string s_hours, string s_manager, i32 s_market_id, string s_geography_class, string s_market_desc, string s_market_manager, i32 s_division_id, string s_division_name, i32 s_company_id, string s_company_name, string s_street_number, string s_street_name, string s_street_type, string s_suite_number, string s_city, string s_county, string s_state, string s_zip, string s_country, float s_gmt_offset, float s_tax_precentage}
2015-04-07 18:20:30,790 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct store { i32 s_store_sk, string s_store_id, string s_rec_start_date, string s_rec_end_date, i32 s_closed_date_sk, string s_store_name, i32 s_number_employees, i32 s_floor_space, string s_hours, string s_manager, i32 s_market_id, string s_geography_class, string s_market_desc, string s_market_manager, i32 s_division_id, string s_division_name, i32 s_company_id, string s_company_name, string s_street_number, string s_street_name, string s_street_type, string s_suite_number, string s_city, string s_county, string s_state, string s_zip, string s_country, float s_gmt_offset, float s_tax_precentage}
2015-04-07 18:20:30,791 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store of tablestore
2015-04-07 18:20:30,791 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store
2015-04-07 18:20:30,791 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[223]
2015-04-07 18:20:30,791 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(234)) - connecting Reducer 2 with Map 7
2015-04-07 18:20:30,791 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[41]
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: GBY[42]
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[137]
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 8) for GBY[42]
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[41] with following reduce work: Reducer 8
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[41] as parent from GBY[42]
2015-04-07 18:20:30,792 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(296)) - Connecting union work (org.apache.hadoop.hive.ql.plan.UnionWork@7ad435ea) with work (org.apache.hadoop.hive.ql.plan.ReduceWork@605b1169)
2015-04-07 18:20:30,793 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[137]
2015-04-07 18:20:30,793 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: GBY[138]
2015-04-07 18:20:30,793 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[140]
2015-04-07 18:20:30,793 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 10) for GBY[138]
2015-04-07 18:20:30,793 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[137] with following reduce work: Reducer 10
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[137] as parent from GBY[138]
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[140]
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: SEL[141]
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: FS[143]
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 11) for SEL[141]
2015-04-07 18:20:30,794 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[140] with following reduce work: Reducer 11
2015-04-07 18:20:30,795 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[140] as parent from SEL[141]
2015-04-07 18:20:30,795 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: FS[143]
2015-04-07 18:20:30,795 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[44]
2015-04-07 18:20:30,795 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[63]
2015-04-07 18:20:30,795 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 12) for TS[44]
2015-04-07 18:20:30,795 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_sales { i32 cs_sold_date_sk, i32 cs_sold_time_sk, i32 cs_ship_date_sk, i32 cs_bill_customer_sk, i32 cs_bill_cdemo_sk, i32 cs_bill_hdemo_sk, i32 cs_bill_addr_sk, i32 cs_ship_customer_sk, i32 cs_ship_cdemo_sk, i32 cs_ship_hdemo_sk, i32 cs_ship_addr_sk, i32 cs_call_center_sk, i32 cs_catalog_page_sk, i32 cs_ship_mode_sk, i32 cs_warehouse_sk, i32 cs_item_sk, i32 cs_promo_sk, i32 cs_order_number, i32 cs_quantity, float cs_wholesale_cost, float cs_list_price, float cs_sales_price, float cs_ext_discount_amt, float cs_ext_sales_price, float cs_ext_wholesale_cost, float cs_ext_list_price, float cs_ext_tax, float cs_coupon_amt, float cs_ext_ship_cost, float cs_net_paid, float cs_net_paid_inc_tax, float cs_net_paid_inc_ship, float cs_net_paid_inc_ship_tax, float cs_net_profit, string cs_sold_date}
2015-04-07 18:20:30,798 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_sales { i32 cs_sold_date_sk, i32 cs_sold_time_sk, i32 cs_ship_date_sk, i32 cs_bill_customer_sk, i32 cs_bill_cdemo_sk, i32 cs_bill_hdemo_sk, i32 cs_bill_addr_sk, i32 cs_ship_customer_sk, i32 cs_ship_cdemo_sk, i32 cs_ship_hdemo_sk, i32 cs_ship_addr_sk, i32 cs_call_center_sk, i32 cs_catalog_page_sk, i32 cs_ship_mode_sk, i32 cs_warehouse_sk, i32 cs_item_sk, i32 cs_promo_sk, i32 cs_order_number, i32 cs_quantity, float cs_wholesale_cost, float cs_list_price, float cs_sales_price, float cs_ext_discount_amt, float cs_ext_sales_price, float cs_ext_wholesale_cost, float cs_ext_list_price, float cs_ext_tax, float cs_coupon_amt, float cs_ext_ship_cost, float cs_net_paid, float cs_net_paid_inc_tax, float cs_net_paid_inc_ship, float cs_net_paid_inc_ship_tax, float cs_net_profit, string cs_sold_date}
2015-04-07 18:20:30,798 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_sales { i32 cs_sold_date_sk, i32 cs_sold_time_sk, i32 cs_ship_date_sk, i32 cs_bill_customer_sk, i32 cs_bill_cdemo_sk, i32 cs_bill_hdemo_sk, i32 cs_bill_addr_sk, i32 cs_ship_customer_sk, i32 cs_ship_cdemo_sk, i32 cs_ship_hdemo_sk, i32 cs_ship_addr_sk, i32 cs_call_center_sk, i32 cs_catalog_page_sk, i32 cs_ship_mode_sk, i32 cs_warehouse_sk, i32 cs_item_sk, i32 cs_promo_sk, i32 cs_order_number, i32 cs_quantity, float cs_wholesale_cost, float cs_list_price, float cs_sales_price, float cs_ext_discount_amt, float cs_ext_sales_price, float cs_ext_wholesale_cost, float cs_ext_list_price, float cs_ext_tax, float cs_coupon_amt, float cs_ext_ship_cost, float cs_net_paid, float cs_net_paid_inc_tax, float cs_net_paid_inc_ship, float cs_net_paid_inc_ship_tax, float cs_net_profit, string cs_sold_date}
2015-04-07 18:20:30,798 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales of tablecatalog_sales
2015-04-07 18:20:30,798 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales
2015-04-07 18:20:30,799 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[224]
2015-04-07 18:20:30,799 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[63]
2015-04-07 18:20:30,799 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[225], pos: 0 --> Map 12 (2911 keys estimated from 2911 rows, 1 buckets)
2015-04-07 18:20:30,799 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[46]
2015-04-07 18:20:30,799 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[60]
2015-04-07 18:20:30,800 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 13) for TS[46]
2015-04-07 18:20:30,800 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_returns { i32 cr_returned_date_sk, i32 cr_returned_time_sk, i32 cr_item_sk, i32 cr_refunded_customer_sk, i32 cr_refunded_cdemo_sk, i32 cr_refunded_hdemo_sk, i32 cr_refunded_addr_sk, i32 cr_returning_customer_sk, i32 cr_returning_cdemo_sk, i32 cr_returning_hdemo_sk, i32 cr_returning_addr_sk, i32 cr_call_center_sk, i32 cr_catalog_page_sk, i32 cr_ship_mode_sk, i32 cr_warehouse_sk, i32 cr_reason_sk, i32 cr_order_number, i32 cr_return_quantity, float cr_return_amount, float cr_return_tax, float cr_return_amt_inc_tax, float cr_fee, float cr_return_ship_cost, float cr_refunded_cash, float cr_reversed_charge, float cr_store_credit, float cr_net_loss, string cr_returned_date}
2015-04-07 18:20:30,800 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_returns { i32 cr_returned_date_sk, i32 cr_returned_time_sk, i32 cr_item_sk, i32 cr_refunded_customer_sk, i32 cr_refunded_cdemo_sk, i32 cr_refunded_hdemo_sk, i32 cr_refunded_addr_sk, i32 cr_returning_customer_sk, i32 cr_returning_cdemo_sk, i32 cr_returning_hdemo_sk, i32 cr_returning_addr_sk, i32 cr_call_center_sk, i32 cr_catalog_page_sk, i32 cr_ship_mode_sk, i32 cr_warehouse_sk, i32 cr_reason_sk, i32 cr_order_number, i32 cr_return_quantity, float cr_return_amount, float cr_return_tax, float cr_return_amt_inc_tax, float cr_fee, float cr_return_ship_cost, float cr_refunded_cash, float cr_reversed_charge, float cr_store_credit, float cr_net_loss, string cr_returned_date}
2015-04-07 18:20:30,801 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_returns { i32 cr_returned_date_sk, i32 cr_returned_time_sk, i32 cr_item_sk, i32 cr_refunded_customer_sk, i32 cr_refunded_cdemo_sk, i32 cr_refunded_hdemo_sk, i32 cr_refunded_addr_sk, i32 cr_returning_customer_sk, i32 cr_returning_cdemo_sk, i32 cr_returning_hdemo_sk, i32 cr_returning_addr_sk, i32 cr_call_center_sk, i32 cr_catalog_page_sk, i32 cr_ship_mode_sk, i32 cr_warehouse_sk, i32 cr_reason_sk, i32 cr_order_number, i32 cr_return_quantity, float cr_return_amount, float cr_return_tax, float cr_return_amt_inc_tax, float cr_fee, float cr_return_ship_cost, float cr_refunded_cash, float cr_reversed_charge, float cr_store_credit, float cr_net_loss, string cr_returned_date}
2015-04-07 18:20:30,801 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns of tablecatalog_returns
2015-04-07 18:20:30,801 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns
2015-04-07 18:20:30,801 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[60]
2015-04-07 18:20:30,801 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[224], pos: 1 --> Map 13 (28798881 keys estimated from 28798881 rows, 1 buckets)
2015-04-07 18:20:30,801 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 13 with Map 12
2015-04-07 18:20:30,802 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[48]
2015-04-07 18:20:30,802 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[68]
2015-04-07 18:20:30,802 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 14) for TS[48]
2015-04-07 18:20:30,802 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,803 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,803 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,803 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim of tabledate_dim
2015-04-07 18:20:30,803 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim
2015-04-07 18:20:30,803 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[225]
2015-04-07 18:20:30,804 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(234)) - connecting Map 12 with Map 14
2015-04-07 18:20:30,804 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[68]
2015-04-07 18:20:30,804 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[226], pos: 0 --> Map 14 (1456 keys estimated from 1456 rows, 1 buckets)
2015-04-07 18:20:30,804 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[51]
2015-04-07 18:20:30,804 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[85]
2015-04-07 18:20:30,805 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 15) for TS[51]
2015-04-07 18:20:30,805 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_page { i32 cp_catalog_page_sk, string cp_catalog_page_id, i32 cp_start_date_sk, i32 cp_end_date_sk, string cp_department, i32 cp_catalog_number, i32 cp_catalog_page_number, string cp_description, string cp_type}
2015-04-07 18:20:30,805 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_page { i32 cp_catalog_page_sk, string cp_catalog_page_id, i32 cp_start_date_sk, i32 cp_end_date_sk, string cp_department, i32 cp_catalog_number, i32 cp_catalog_page_number, string cp_description, string cp_type}
2015-04-07 18:20:30,805 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct catalog_page { i32 cp_catalog_page_sk, string cp_catalog_page_id, i32 cp_start_date_sk, i32 cp_end_date_sk, string cp_department, i32 cp_catalog_number, i32 cp_catalog_page_number, string cp_description, string cp_type}
2015-04-07 18:20:30,806 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page of tablecatalog_page
2015-04-07 18:20:30,806 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page
2015-04-07 18:20:30,806 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[226]
2015-04-07 18:20:30,806 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(234)) - connecting Map 14 with Map 15
2015-04-07 18:20:30,806 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[227]
2015-04-07 18:20:30,806 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[228]
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[85]
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: GBY[86]
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[137]
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 16) for GBY[86]
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[85] with following reduce work: Reducer 16
2015-04-07 18:20:30,807 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[85] as parent from GBY[86]
2015-04-07 18:20:30,808 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(296)) - Connecting union work (org.apache.hadoop.hive.ql.plan.UnionWork@7ad435ea) with work (org.apache.hadoop.hive.ql.plan.ReduceWork@48048060)
2015-04-07 18:20:30,808 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(321)) - Second pass. Leaf operator: RS[137] has common downstream work:org.apache.hadoop.hive.ql.plan.ReduceWork@21fd4a6
2015-04-07 18:20:30,808 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[53]
2015-04-07 18:20:30,808 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[75]
2015-04-07 18:20:30,808 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 17) for TS[53]
2015-04-07 18:20:30,808 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,809 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,809 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,809 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item of tableitem
2015-04-07 18:20:30,809 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item
2015-04-07 18:20:30,809 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[75]
2015-04-07 18:20:30,810 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[227], pos: 1 --> Map 17 (16000 keys estimated from 16000 rows, 1 buckets)
2015-04-07 18:20:30,810 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 17 with Map 15
2015-04-07 18:20:30,810 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[56]
2015-04-07 18:20:30,810 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[80]
2015-04-07 18:20:30,810 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 18) for TS[56]
2015-04-07 18:20:30,810 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,811 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,811 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,811 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion of tablepromotion
2015-04-07 18:20:30,811 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion
2015-04-07 18:20:30,812 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[80]
2015-04-07 18:20:30,812 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[228], pos: 1 --> Map 18 (225 keys estimated from 225 rows, 1 buckets)
2015-04-07 18:20:30,812 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 18 with Map 15
2015-04-07 18:20:30,812 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[90]
2015-04-07 18:20:30,812 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[131]
2015-04-07 18:20:30,813 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 19) for TS[90]
2015-04-07 18:20:30,813 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_sales { i32 ws_sold_date_sk, i32 ws_sold_time_sk, i32 ws_ship_date_sk, i32 ws_item_sk, i32 ws_bill_customer_sk, i32 ws_bill_cdemo_sk, i32 ws_bill_hdemo_sk, i32 ws_bill_addr_sk, i32 ws_ship_customer_sk, i32 ws_ship_cdemo_sk, i32 ws_ship_hdemo_sk, i32 ws_ship_addr_sk, i32 ws_web_page_sk, i32 ws_web_site_sk, i32 ws_ship_mode_sk, i32 ws_warehouse_sk, i32 ws_promo_sk, i32 ws_order_number, i32 ws_quantity, float ws_wholesale_cost, float ws_list_price, float ws_sales_price, float ws_ext_discount_amt, float ws_ext_sales_price, float ws_ext_wholesale_cost, float ws_ext_list_price, float ws_ext_tax, float ws_coupon_amt, float ws_ext_ship_cost, float ws_net_paid, float ws_net_paid_inc_tax, float ws_net_paid_inc_ship, float ws_net_paid_inc_ship_tax, float ws_net_profit, string ws_sold_date}
2015-04-07 18:20:30,813 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_sales { i32 ws_sold_date_sk, i32 ws_sold_time_sk, i32 ws_ship_date_sk, i32 ws_item_sk, i32 ws_bill_customer_sk, i32 ws_bill_cdemo_sk, i32 ws_bill_hdemo_sk, i32 ws_bill_addr_sk, i32 ws_ship_customer_sk, i32 ws_ship_cdemo_sk, i32 ws_ship_hdemo_sk, i32 ws_ship_addr_sk, i32 ws_web_page_sk, i32 ws_web_site_sk, i32 ws_ship_mode_sk, i32 ws_warehouse_sk, i32 ws_promo_sk, i32 ws_order_number, i32 ws_quantity, float ws_wholesale_cost, float ws_list_price, float ws_sales_price, float ws_ext_discount_amt, float ws_ext_sales_price, float ws_ext_wholesale_cost, float ws_ext_list_price, float ws_ext_tax, float ws_coupon_amt, float ws_ext_ship_cost, float ws_net_paid, float ws_net_paid_inc_tax, float ws_net_paid_inc_ship, float ws_net_paid_inc_ship_tax, float ws_net_profit, string ws_sold_date}
2015-04-07 18:20:30,814 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_sales { i32 ws_sold_date_sk, i32 ws_sold_time_sk, i32 ws_ship_date_sk, i32 ws_item_sk, i32 ws_bill_customer_sk, i32 ws_bill_cdemo_sk, i32 ws_bill_hdemo_sk, i32 ws_bill_addr_sk, i32 ws_ship_customer_sk, i32 ws_ship_cdemo_sk, i32 ws_ship_hdemo_sk, i32 ws_ship_addr_sk, i32 ws_web_page_sk, i32 ws_web_site_sk, i32 ws_ship_mode_sk, i32 ws_warehouse_sk, i32 ws_promo_sk, i32 ws_order_number, i32 ws_quantity, float ws_wholesale_cost, float ws_list_price, float ws_sales_price, float ws_ext_discount_amt, float ws_ext_sales_price, float ws_ext_wholesale_cost, float ws_ext_list_price, float ws_ext_tax, float ws_coupon_amt, float ws_ext_ship_cost, float ws_net_paid, float ws_net_paid_inc_tax, float ws_net_paid_inc_ship, float ws_net_paid_inc_ship_tax, float ws_net_profit, string ws_sold_date}
2015-04-07 18:20:30,814 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales of tableweb_sales
2015-04-07 18:20:30,814 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales
2015-04-07 18:20:30,814 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[229]
2015-04-07 18:20:30,814 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[230]
2015-04-07 18:20:30,816 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[231]
2015-04-07 18:20:30,816 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[232]
2015-04-07 18:20:30,816 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(197)) - Processing map join: MAPJOIN[233]
2015-04-07 18:20:30,816 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[131]
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: GBY[132]
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[137]
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createReduceWork(109)) - Adding reduce work (Reducer 20) for GBY[132]
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:setupReduceSink(165)) - Setting up reduce sink: RS[131] with following reduce work: Reducer 20
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(269)) - Removing RS[131] as parent from GBY[132]
2015-04-07 18:20:30,817 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(296)) - Connecting union work (org.apache.hadoop.hive.ql.plan.UnionWork@7ad435ea) with work (org.apache.hadoop.hive.ql.plan.ReduceWork@7601c9f6)
2015-04-07 18:20:30,818 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(321)) - Second pass. Leaf operator: RS[137] has common downstream work:org.apache.hadoop.hive.ql.plan.ReduceWork@21fd4a6
2015-04-07 18:20:30,818 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[92]
2015-04-07 18:20:30,818 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[106]
2015-04-07 18:20:30,818 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 21) for TS[92]
2015-04-07 18:20:30,818 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_returns { i32 wr_returned_date_sk, i32 wr_returned_time_sk, i32 wr_item_sk, i32 wr_refunded_customer_sk, i32 wr_refunded_cdemo_sk, i32 wr_refunded_hdemo_sk, i32 wr_refunded_addr_sk, i32 wr_returning_customer_sk, i32 wr_returning_cdemo_sk, i32 wr_returning_hdemo_sk, i32 wr_returning_addr_sk, i32 wr_web_page_sk, i32 wr_reason_sk, i32 wr_order_number, i32 wr_return_quantity, float wr_return_amt, float wr_return_tax, float wr_return_amt_inc_tax, float wr_fee, float wr_return_ship_cost, float wr_refunded_cash, float wr_reversed_charge, float wr_account_credit, float wr_net_loss, string wr_returned_date}
2015-04-07 18:20:30,819 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_returns { i32 wr_returned_date_sk, i32 wr_returned_time_sk, i32 wr_item_sk, i32 wr_refunded_customer_sk, i32 wr_refunded_cdemo_sk, i32 wr_refunded_hdemo_sk, i32 wr_refunded_addr_sk, i32 wr_returning_customer_sk, i32 wr_returning_cdemo_sk, i32 wr_returning_hdemo_sk, i32 wr_returning_addr_sk, i32 wr_web_page_sk, i32 wr_reason_sk, i32 wr_order_number, i32 wr_return_quantity, float wr_return_amt, float wr_return_tax, float wr_return_amt_inc_tax, float wr_fee, float wr_return_ship_cost, float wr_refunded_cash, float wr_reversed_charge, float wr_account_credit, float wr_net_loss, string wr_returned_date}
2015-04-07 18:20:30,819 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_returns { i32 wr_returned_date_sk, i32 wr_returned_time_sk, i32 wr_item_sk, i32 wr_refunded_customer_sk, i32 wr_refunded_cdemo_sk, i32 wr_refunded_hdemo_sk, i32 wr_refunded_addr_sk, i32 wr_returning_customer_sk, i32 wr_returning_cdemo_sk, i32 wr_returning_hdemo_sk, i32 wr_returning_addr_sk, i32 wr_web_page_sk, i32 wr_reason_sk, i32 wr_order_number, i32 wr_return_quantity, float wr_return_amt, float wr_return_tax, float wr_return_amt_inc_tax, float wr_fee, float wr_return_ship_cost, float wr_refunded_cash, float wr_reversed_charge, float wr_account_credit, float wr_net_loss, string wr_returned_date}
2015-04-07 18:20:30,819 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns of tableweb_returns
2015-04-07 18:20:30,819 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns
2015-04-07 18:20:30,820 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[106]
2015-04-07 18:20:30,820 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[229], pos: 1 --> Map 21 (13749816 keys estimated from 13749816 rows, 1 buckets)
2015-04-07 18:20:30,820 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 21 with Map 19
2015-04-07 18:20:30,820 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[94]
2015-04-07 18:20:30,820 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[111]
2015-04-07 18:20:30,820 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 22) for TS[94]
2015-04-07 18:20:30,821 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_site { i32 web_site_sk, string web_site_id, string web_rec_start_date, string web_rec_end_date, string web_name, i32 web_open_date_sk, i32 web_close_date_sk, string web_class, string web_manager, i32 web_mkt_id, string web_mkt_class, string web_mkt_desc, string web_market_manager, i32 web_company_id, string web_company_name, string web_street_number, string web_street_name, string web_street_type, string web_suite_number, string web_city, string web_county, string web_state, string web_zip, string web_country, float web_gmt_offset, float web_tax_percentage}
2015-04-07 18:20:30,821 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_site { i32 web_site_sk, string web_site_id, string web_rec_start_date, string web_rec_end_date, string web_name, i32 web_open_date_sk, i32 web_close_date_sk, string web_class, string web_manager, i32 web_mkt_id, string web_mkt_class, string web_mkt_desc, string web_market_manager, i32 web_company_id, string web_company_name, string web_street_number, string web_street_name, string web_street_type, string web_suite_number, string web_city, string web_county, string web_state, string web_zip, string web_country, float web_gmt_offset, float web_tax_percentage}
2015-04-07 18:20:30,821 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct web_site { i32 web_site_sk, string web_site_id, string web_rec_start_date, string web_rec_end_date, string web_name, i32 web_open_date_sk, i32 web_close_date_sk, string web_class, string web_manager, i32 web_mkt_id, string web_mkt_class, string web_mkt_desc, string web_market_manager, i32 web_company_id, string web_company_name, string web_street_number, string web_street_name, string web_street_type, string web_suite_number, string web_city, string web_county, string web_state, string web_zip, string web_country, float web_gmt_offset, float web_tax_percentage}
2015-04-07 18:20:30,822 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site of tableweb_site
2015-04-07 18:20:30,822 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site
2015-04-07 18:20:30,822 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[111]
2015-04-07 18:20:30,822 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[230], pos: 1 --> Map 22 (38 keys estimated from 38 rows, 1 buckets)
2015-04-07 18:20:30,822 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 22 with Map 19
2015-04-07 18:20:30,823 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[96]
2015-04-07 18:20:30,823 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[116]
2015-04-07 18:20:30,823 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 23) for TS[96]
2015-04-07 18:20:30,823 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,823 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,824 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct date_dim { i32 d_date_sk, string d_date_id, string d_date, i32 d_month_seq, i32 d_week_seq, i32 d_quarter_seq, i32 d_year, i32 d_dow, i32 d_moy, i32 d_dom, i32 d_qoy, i32 d_fy_year, i32 d_fy_quarter_seq, i32 d_fy_week_seq, string d_day_name, string d_quarter_name, string d_holiday, string d_weekend, string d_following_holiday, i32 d_first_dom, i32 d_last_dom, i32 d_same_day_ly, i32 d_same_day_lq, string d_current_day, string d_current_week, string d_current_month, string d_current_quarter, string d_current_year}
2015-04-07 18:20:30,824 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim of tabledate_dim
2015-04-07 18:20:30,824 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim
2015-04-07 18:20:30,824 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[116]
2015-04-07 18:20:30,824 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[231], pos: 1 --> Map 23 (36524 keys estimated from 36524 rows, 1 buckets)
2015-04-07 18:20:30,825 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 23 with Map 19
2015-04-07 18:20:30,825 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[99]
2015-04-07 18:20:30,825 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[121]
2015-04-07 18:20:30,825 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 24) for TS[99]
2015-04-07 18:20:30,825 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,825 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,826 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct item { i32 i_item_sk, string i_item_id, string i_rec_start_date, string i_rec_end_date, string i_item_desc, float i_current_price, float i_wholesale_cost, i32 i_brand_id, string i_brand, i32 i_class_id, string i_class, i32 i_category_id, string i_category, i32 i_manufact_id, string i_manufact, string i_size, string i_formulation, string i_color, string i_units, string i_container, i32 i_manager_id, string i_product_name}
2015-04-07 18:20:30,826 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item of tableitem
2015-04-07 18:20:30,826 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item
2015-04-07 18:20:30,826 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[121]
2015-04-07 18:20:30,827 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[232], pos: 1 --> Map 24 (16000 keys estimated from 16000 rows, 1 buckets)
2015-04-07 18:20:30,827 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 24 with Map 19
2015-04-07 18:20:30,827 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(92)) - Root operator: TS[102]
2015-04-07 18:20:30,827 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(93)) - Leaf operator: RS[126]
2015-04-07 18:20:30,827 DEBUG [main]: parse.GenTezUtils (GenTezUtils.java:createMapWork(184)) - Adding map work (Map 25) for TS[102]
2015-04-07 18:20:30,827 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,828 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,828 DEBUG [main]: hive.log (MetaStoreUtils.java:getDDLFromFieldSchema(813)) - DDL: struct promotion { i32 p_promo_sk, string p_promo_id, i32 p_start_date_sk, i32 p_end_date_sk, i32 p_item_sk, float p_cost, i32 p_response_target, string p_promo_name, string p_channel_dmail, string p_channel_email, string p_channel_catalog, string p_channel_tv, string p_channel_radio, string p_channel_press, string p_channel_event, string p_channel_demo, string p_channel_details, string p_purpose, string p_discount_active}
2015-04-07 18:20:30,828 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(671)) - Adding hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion of tablepromotion
2015-04-07 18:20:30,828 DEBUG [main]: optimizer.GenMapRedUtils (GenMapRedUtils.java:setMapWork(709)) - Information added for path hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion
2015-04-07 18:20:30,828 DEBUG [main]: parse.GenTezWork (GenTezWork.java:process(388)) - First pass. Leaf operator: RS[126]
2015-04-07 18:20:30,829 INFO [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(166)) - Mapjoin MAPJOIN[233], pos: 1 --> Map 25 (225 keys estimated from 225 rows, 1 buckets)
2015-04-07 18:20:30,829 DEBUG [main]: optimizer.ReduceSinkMapJoinProc (ReduceSinkMapJoinProc.java:process(228)) - connecting Map 25 with Map 19
2015-04-07 18:20:30,829 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:30,829 INFO [main]: exec.Utilities (Utilities.java:serializePlan(933)) - Serializing ArrayList via kryo
2015-04-07 18:20:31,124 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,124 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,125 INFO [main]: exec.Utilities (Utilities.java:deserializePlan(960)) - Deserializing ArrayList via kryo
2015-04-07 18:20:31,194 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,219 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,219 INFO [main]: exec.Utilities (Utilities.java:serializePlan(933)) - Serializing ArrayList via kryo
2015-04-07 18:20:31,226 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,226 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,226 INFO [main]: exec.Utilities (Utilities.java:deserializePlan(960)) - Deserializing ArrayList via kryo
2015-04-07 18:20:31,233 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,233 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,233 INFO [main]: exec.Utilities (Utilities.java:serializePlan(933)) - Serializing ArrayList via kryo
2015-04-07 18:20:31,240 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,240 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,240 INFO [main]: exec.Utilities (Utilities.java:deserializePlan(960)) - Deserializing ArrayList via kryo
2015-04-07 18:20:31,247 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,247 DEBUG [main]: parse.TezCompiler (TezCompiler.java:generateTaskTree(381)) - There are 0 app master events.
2015-04-07 18:20:31,256 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 1
2015-04-07 18:20:31,256 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,257 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,257 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 13
2015-04-07 18:20:31,257 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,257 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,257 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 17
2015-04-07 18:20:31,257 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,257 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,258 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 18
2015-04-07 18:20:31,258 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,258 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,258 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 21
2015-04-07 18:20:31,258 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,258 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,258 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 22
2015-04-07 18:20:31,259 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,259 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,259 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 23
2015-04-07 18:20:31,259 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,259 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,260 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 24
2015-04-07 18:20:31,260 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,260 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,260 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 25
2015-04-07 18:20:31,260 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,260 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,260 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 3
2015-04-07 18:20:31,261 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,261 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,261 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 4
2015-04-07 18:20:31,261 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,261 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,261 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 5
2015-04-07 18:20:31,261 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,262 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,262 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 6
2015-04-07 18:20:31,262 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,262 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,263 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 1
2015-04-07 18:20:31,264 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,264 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,264 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 13
2015-04-07 18:20:31,264 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,264 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,264 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 17
2015-04-07 18:20:31,265 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,265 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,265 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 18
2015-04-07 18:20:31,265 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,265 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,265 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 21
2015-04-07 18:20:31,265 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,266 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,266 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 22
2015-04-07 18:20:31,266 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,266 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,266 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 23
2015-04-07 18:20:31,266 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,266 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,266 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 24
2015-04-07 18:20:31,267 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,267 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,267 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 25
2015-04-07 18:20:31,267 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,267 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,267 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 3
2015-04-07 18:20:31,267 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,268 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,268 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 4
2015-04-07 18:20:31,268 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,268 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,268 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 5
2015-04-07 18:20:31,268 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,268 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,268 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 6
2015-04-07 18:20:31,269 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,269 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,273 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 1
2015-04-07 18:20:31,273 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,273 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,274 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 13
2015-04-07 18:20:31,274 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,274 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,274 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 17
2015-04-07 18:20:31,274 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,274 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,274 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 18
2015-04-07 18:20:31,275 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,275 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,275 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 21
2015-04-07 18:20:31,275 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,275 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,275 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 22
2015-04-07 18:20:31,275 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,276 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,276 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 23
2015-04-07 18:20:31,276 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,276 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,276 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 24
2015-04-07 18:20:31,276 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,276 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,277 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 25
2015-04-07 18:20:31,277 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,277 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,277 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 3
2015-04-07 18:20:31,277 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,277 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,277 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 4
2015-04-07 18:20:31,278 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,278 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,278 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 5
2015-04-07 18:20:31,278 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,278 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,278 DEBUG [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(167)) - Looking at: Map 6
2015-04-07 18:20:31,278 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(175)) - Looking for table scans where optimization is applicable
2015-04-07 18:20:31,279 INFO [main]: physical.NullScanTaskDispatcher (NullScanTaskDispatcher.java:dispatch(199)) - Found 0 null table scans
2015-04-07 18:20:31,296 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,354 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,354 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,355 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,355 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,355 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,355 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,356 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,357 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,359 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,360 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,361 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,361 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,361 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,361 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,362 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,362 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,362 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,362 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,362 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,363 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,364 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,364 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,364 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,364 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,365 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,365 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,365 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,366 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,366 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,366 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,368 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,369 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales, sortedProjectionColumnMap {0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,370 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales, sortedProjectionColumnMap {0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,370 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,371 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,371 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,371 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,372 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,372 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,373 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,373 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,374 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales, sortedProjectionColumnMap {0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,374 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,374 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[7]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[8]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[9]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[15]
2015-04-07 18:20:31,375 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[22]
2015-04-07 18:20:31,376 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales, sortedProjectionColumnMap {0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,376 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales, sortedProjectionColumnMap {0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,376 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,377 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales/_SELECT_, sortedProjectionColumnMap {0=_col0, 2=_col1, 7=_col2, 8=_col3, 9=_col4, 15=_col5, 22=_col6}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,378 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales={0=ss_sold_date_sk, 1=ss_sold_time_sk, 2=ss_item_sk, 3=ss_customer_sk, 4=ss_cdemo_sk, 5=ss_hdemo_sk, 6=ss_addr_sk, 7=ss_store_sk, 8=ss_promo_sk, 9=ss_ticket_number, 10=ss_quantity, 11=ss_wholesale_cost, 12=ss_list_price, 13=ss_sales_price, 14=ss_ext_discount_amt, 15=ss_ext_sales_price, 16=ss_ext_wholesale_cost, 17=ss_ext_list_price, 18=ss_ext_tax, 19=ss_coupon_amt, 20=ss_net_paid, 21=ss_net_paid_inc_tax, 22=ss_net_profit, 23=ss_sold_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales/_SELECT_={0=_col0, 2=_col1, 7=_col2, 8=_col3, 9=_col4, 15=_col5, 22=_col6}}
2015-04-07 18:20:31,378 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_sales/_SELECT_={}}
2015-04-07 18:20:31,379 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,379 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,379 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,379 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,379 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,380 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,381 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,381 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,381 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,381 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,381 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,382 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,382 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,382 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,382 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns, sortedProjectionColumnMap {0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,382 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns, sortedProjectionColumnMap {0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,382 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,383 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,383 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns, sortedProjectionColumnMap {0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,383 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,383 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,383 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[9]
2015-04-07 18:20:31,386 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[11]
2015-04-07 18:20:31,386 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[19]
2015-04-07 18:20:31,386 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns, sortedProjectionColumnMap {0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,387 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns, sortedProjectionColumnMap {0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,387 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,387 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns/_SELECT_, sortedProjectionColumnMap {2=_col0, 9=_col1, 11=_col2, 19=_col3}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,387 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns={0=sr_returned_date_sk, 1=sr_return_time_sk, 2=sr_item_sk, 3=sr_customer_sk, 4=sr_cdemo_sk, 5=sr_hdemo_sk, 6=sr_addr_sk, 7=sr_store_sk, 8=sr_reason_sk, 9=sr_ticket_number, 10=sr_return_quantity, 11=sr_return_amt, 12=sr_return_tax, 13=sr_return_amt_inc_tax, 14=sr_fee, 15=sr_return_ship_cost, 16=sr_refunded_cash, 17=sr_reversed_charge, 18=sr_store_credit, 19=sr_net_loss, 20=sr_returned_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns/_SELECT_={2=_col0, 9=_col1, 11=_col2, 19=_col3}}
2015-04-07 18:20:31,387 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store_returns/_SELECT_={}}
2015-04-07 18:20:31,388 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,395 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,396 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,396 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,396 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,396 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,399 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,399 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,399 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,399 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,399 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,401 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,404 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,404 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,404 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,405 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,405 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,405 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,406 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,406 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,406 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,406 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,407 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,407 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,407 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,407 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,408 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,408 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,408 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,408 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,409 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,410 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,410 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,410 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,410 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,411 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,411 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,411 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,411 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,412 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,412 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,412 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,413 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,413 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,413 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,413 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,414 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,414 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,414 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,415 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,415 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,415 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,415 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,416 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,416 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,416 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,416 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,416 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,417 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,417 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,417 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,417 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={0=_col0}}
2015-04-07 18:20:31,417 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={}}
2015-04-07 18:20:31,418 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,425 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,426 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,426 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,426 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,426 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,426 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,427 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,427 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,427 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,427 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,428 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,428 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,428 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,429 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,429 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,429 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,429 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,429 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,430 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,430 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,430 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,431 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,431 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,431 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,431 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,431 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,431 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,432 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,432 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={0=_col0}}
2015-04-07 18:20:31,432 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={}}
2015-04-07 18:20:31,432 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,436 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,437 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,437 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,437 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,437 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,437 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,438 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,438 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,438 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,438 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,439 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,439 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,439 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,439 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,439 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,440 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,440 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,440 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,440 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,441 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,441 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,444 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,444 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,444 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,444 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,445 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,445 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,445 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,445 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={0=_col0}}
2015-04-07 18:20:31,445 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={}}
2015-04-07 18:20:31,446 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,446 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,446 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,446 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,446 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,447 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,447 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,447 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,448 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,448 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,448 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,448 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,448 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,449 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,452 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,454 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,454 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,455 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,455 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,456 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,456 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,456 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,456 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,456 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,457 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,457 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,457 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,457 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,457 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,458 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,459 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,459 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,459 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,459 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,460 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,461 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,461 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,461 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,461 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,461 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,461 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,462 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,462 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,462 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,462 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,463 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,463 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,463 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,463 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,463 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,464 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,464 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,464 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,464 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,464 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,465 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,467 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,468 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,468 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,468 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,468 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,468 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,469 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,469 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,469 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,469 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,469 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,470 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,470 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,470 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,470 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,470 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,471 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,471 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,471 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,471 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,471 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,472 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,472 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,472 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,472 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,472 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,473 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,473 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,473 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,473 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,473 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,474 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,474 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,474 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,474 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,474 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,474 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,475 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,475 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store, sortedProjectionColumnMap {0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,475 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store, sortedProjectionColumnMap {0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,475 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,476 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,476 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store, sortedProjectionColumnMap {0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,476 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,476 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,476 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,477 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store, sortedProjectionColumnMap {0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,477 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store, sortedProjectionColumnMap {0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,477 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,480 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,480 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,480 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,481 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,481 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,481 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,481 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,481 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,482 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,482 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,482 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,482 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,482 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,483 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,483 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,483 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[6](IdentityExpression[2] ConstantVectorExpression[5])
2015-04-07 18:20:31,484 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,484 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,484 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,484 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,484 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,485 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,485 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,485 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,485 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5])
2015-04-07 18:20:31,486 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[5](VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5]))
2015-04-07 18:20:31,486 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col18}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,486 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col18}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,486 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: GBY...
2015-04-07 18:20:31,487 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,488 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,488 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,488 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,488 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,488 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,489 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,489 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store={0=s_store_sk, 1=s_store_id, 2=s_rec_start_date, 3=s_rec_end_date, 4=s_closed_date_sk, 5=s_store_name, 6=s_number_employees, 7=s_floor_space, 8=s_hours, 9=s_manager, 10=s_market_id, 11=s_geography_class, 12=s_market_desc, 13=s_market_manager, 14=s_division_id, 15=s_division_name, 16=s_company_id, 17=s_company_name, 18=s_street_number, 19=s_street_name, 20=s_street_type, 21=s_suite_number, 22=s_city, 23=s_county, 24=s_state, 25=s_zip, 26=s_country, 27=s_gmt_offset, 28=s_tax_precentage}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_={0=_col0, 1=_col1}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null={0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col18}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_={0=_col1, 4=_col0, 5=_col3, 6=_col2}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_/_GROUPBY_={0=_col0, 1=_col1, 2=_col2, 3=_col3}}
2015-04-07 18:20:31,489 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/store/_SELECT_/MAP_JOIN_null/_SELECT_/_GROUPBY_={}}
2015-04-07 18:20:31,489 INFO [main]: physical.Vectorizer (Vectorizer.java:validateReduceWork(462)) - Validating ReduceWork...
2015-04-07 18:20:31,516 DEBUG [main]: lazybinary.LazyBinarySerDe (LazyBinarySerDe.java:initialize(131)) - LazyBinarySerDe initialized with: columnNames=[_col0, _col1, _col2] columnTypes=[double, double, double]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,518 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,519 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,519 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,519 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,519 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,519 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,519 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,520 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,521 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,521 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,521 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,521 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,522 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,522 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,522 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,522 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,522 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,523 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,523 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,523 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,523 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,523 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,524 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,524 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,524 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,524 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,524 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,525 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,525 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,525 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,525 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,525 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,525 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,525 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,526 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,527 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,527 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,527 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,527 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,527 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,527 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,528 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,529 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,530 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,530 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,530 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,530 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,530 INFO [main]: physical.Vectorizer (Vectorizer.java:validateReduceWork(462)) - Validating ReduceWork...
2015-04-07 18:20:31,531 DEBUG [main]: lazybinary.LazyBinarySerDe (LazyBinarySerDe.java:initialize(131)) - LazyBinarySerDe initialized with: columnNames=[_col0, _col1, _col2] columnTypes=[double, double, double]
2015-04-07 18:20:31,531 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,531 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,531 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,531 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,531 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,532 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,532 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,532 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,532 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,532 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,532 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,533 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,533 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,533 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,533 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,533 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,533 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,534 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,535 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,536 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,536 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,536 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,536 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,536 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,536 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,537 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,538 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,539 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,539 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,539 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,539 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,539 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,539 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,540 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,540 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,540 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeReduceWork(490)) - Vectorizing ReduceWork...
2015-04-07 18:20:31,541 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeReduceWork(505)) - vectorizeReduceWork reducer Operator: GBY...
2015-04-07 18:20:31,541 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: GBY...
2015-04-07 18:20:31,541 INFO [main]: physical.Vectorizer (Vectorizer.java:process(764)) - ReduceWorkVectorizationNodeProcessor process reduceColumnNames [KEY._col0, KEY._col1, KEY._col2, VALUE._col0, VALUE._col1, VALUE._col2]
2015-04-07 18:20:31,542 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(773)) - Vectorized ReduceWork reduce shuffle vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY._col0, 1=KEY._col1, 2=KEY._col2, 3=VALUE._col0, 4=VALUE._col1, 5=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,542 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,542 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,542 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,542 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,543 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,543 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,543 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator OP vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY._col0, 1=KEY._col1, 2=KEY._col2, 3=VALUE._col0, 4=VALUE._col1, 5=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,543 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(801)) - Vectorized ReduceWork operator OP added vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY._col0, 1=KEY._col1, 2=KEY._col2, 3=VALUE._col0, 4=VALUE._col1, 5=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,543 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,543 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,544 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,544 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,544 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,544 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,544 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator OP vectorization context Context key _REDUCE_SHUFFLE_/_GROUPBY_, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col3, 3=_col4, 4=_col5}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,544 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(801)) - Vectorized ReduceWork operator OP added vectorization context Context key _REDUCE_SHUFFLE_/_GROUPBY_, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col3, 3=_col4, 4=_col5}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,545 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,545 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator RS vectorization context Context key _REDUCE_SHUFFLE_/_GROUPBY_/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col4}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,545 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {_REDUCE_SHUFFLE_={0=KEY._col0, 1=KEY._col1, 2=KEY._col2, 3=VALUE._col0, 4=VALUE._col1, 5=VALUE._col2}, _REDUCE_SHUFFLE_/_GROUPBY_={0=_col0, 1=_col1, 2=_col3, 3=_col4, 4=_col5}, _REDUCE_SHUFFLE_/_GROUPBY_/_SELECT_={0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col4}}
2015-04-07 18:20:31,545 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {_REDUCE_SHUFFLE_={}, _REDUCE_SHUFFLE_/_GROUPBY_={}, _REDUCE_SHUFFLE_/_GROUPBY_/_SELECT_={}}
2015-04-07 18:20:31,545 INFO [main]: physical.Vectorizer (Vectorizer.java:validateReduceWork(462)) - Validating ReduceWork...
2015-04-07 18:20:31,546 DEBUG [main]: lazybinary.LazyBinarySerDe (LazyBinarySerDe.java:initialize(131)) - LazyBinarySerDe initialized with: columnNames=[_col0, _col1, _col2] columnTypes=[double, double, double]
2015-04-07 18:20:31,546 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,546 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,546 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,546 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,547 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,547 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,547 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,549 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,549 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,549 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,550 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeReduceWork(490)) - Vectorizing ReduceWork...
2015-04-07 18:20:31,551 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeReduceWork(505)) - vectorizeReduceWork reducer Operator: SEL...
2015-04-07 18:20:31,551 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,551 INFO [main]: physical.Vectorizer (Vectorizer.java:process(764)) - ReduceWorkVectorizationNodeProcessor process reduceColumnNames [KEY.reducesinkkey0, KEY.reducesinkkey1, VALUE._col0, VALUE._col1, VALUE._col2]
2015-04-07 18:20:31,551 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(773)) - Vectorized ReduceWork reduce shuffle vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY.reducesinkkey0, 1=KEY.reducesinkkey1, 2=VALUE._col0, 3=VALUE._col1, 4=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,551 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,551 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,551 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,552 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,552 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,552 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator OP vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY.reducesinkkey0, 1=KEY.reducesinkkey1, 2=VALUE._col0, 3=VALUE._col1, 4=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,552 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(801)) - Vectorized ReduceWork operator OP added vectorization context Context key _REDUCE_SHUFFLE_, sortedProjectionColumnMap {0=KEY.reducesinkkey0, 1=KEY.reducesinkkey1, 2=VALUE._col0, 3=VALUE._col1, 4=VALUE._col2}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,552 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: LIM...
2015-04-07 18:20:31,553 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator LIM vectorization context Context key _REDUCE_SHUFFLE_/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col4}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,553 INFO [main]: physical.Vectorizer (Vectorizer.java:process(756)) - ReduceWorkVectorizationNodeProcessor processing Operator: FS...
2015-04-07 18:20:31,553 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(799)) - Vectorized ReduceWork operator FS vectorization context Context key _REDUCE_SHUFFLE_/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col4}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,553 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {_REDUCE_SHUFFLE_={0=KEY.reducesinkkey0, 1=KEY.reducesinkkey1, 2=VALUE._col0, 3=VALUE._col1, 4=VALUE._col2}, _REDUCE_SHUFFLE_/_SELECT_={0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col4}}
2015-04-07 18:20:31,554 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {_REDUCE_SHUFFLE_={}, _REDUCE_SHUFFLE_/_SELECT_={}}
2015-04-07 18:20:31,554 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,554 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,554 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,554 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,554 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,555 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,556 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,556 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,556 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,556 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,556 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,557 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,557 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,557 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,557 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,557 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns, sortedProjectionColumnMap {0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,558 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns, sortedProjectionColumnMap {0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,558 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,558 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,558 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns, sortedProjectionColumnMap {0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,558 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,559 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,559 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[16]
2015-04-07 18:20:31,559 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[18]
2015-04-07 18:20:31,559 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[26]
2015-04-07 18:20:31,559 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns, sortedProjectionColumnMap {0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,560 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns, sortedProjectionColumnMap {0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,560 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,560 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns/_SELECT_, sortedProjectionColumnMap {2=_col0, 16=_col1, 18=_col2, 26=_col3}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,560 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns={0=cr_returned_date_sk, 1=cr_returned_time_sk, 2=cr_item_sk, 3=cr_refunded_customer_sk, 4=cr_refunded_cdemo_sk, 5=cr_refunded_hdemo_sk, 6=cr_refunded_addr_sk, 7=cr_returning_customer_sk, 8=cr_returning_cdemo_sk, 9=cr_returning_hdemo_sk, 10=cr_returning_addr_sk, 11=cr_call_center_sk, 12=cr_catalog_page_sk, 13=cr_ship_mode_sk, 14=cr_warehouse_sk, 15=cr_reason_sk, 16=cr_order_number, 17=cr_return_quantity, 18=cr_return_amount, 19=cr_return_tax, 20=cr_return_amt_inc_tax, 21=cr_fee, 22=cr_return_ship_cost, 23=cr_refunded_cash, 24=cr_reversed_charge, 25=cr_store_credit, 26=cr_net_loss, 27=cr_returned_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns/_SELECT_={2=_col0, 16=_col1, 18=_col2, 26=_col3}}
2015-04-07 18:20:31,560 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_returns/_SELECT_={}}
2015-04-07 18:20:31,560 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,561 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,561 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,561 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,562 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,563 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,564 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,565 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,566 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,566 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,566 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,566 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,567 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,567 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,567 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,567 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,567 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,568 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,569 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,570 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,570 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,570 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,570 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,571 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,571 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,571 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,571 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,571 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,572 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,573 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,573 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,573 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,573 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,573 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,574 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,574 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,574 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,574 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,574 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,575 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,575 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales, sortedProjectionColumnMap {0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,575 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales, sortedProjectionColumnMap {0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,575 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,576 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,576 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,576 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,576 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,577 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,577 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,577 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,577 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales, sortedProjectionColumnMap {0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,578 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,578 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,578 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[12]
2015-04-07 18:20:31,578 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[15]
2015-04-07 18:20:31,578 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[16]
2015-04-07 18:20:31,578 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[17]
2015-04-07 18:20:31,579 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[23]
2015-04-07 18:20:31,579 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[33]
2015-04-07 18:20:31,579 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales, sortedProjectionColumnMap {0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,579 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales, sortedProjectionColumnMap {0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,579 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,580 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[15]
2015-04-07 18:20:31,580 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[17]
2015-04-07 18:20:31,580 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,580 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[12]
2015-04-07 18:20:31,580 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[15]
2015-04-07 18:20:31,583 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[16]
2015-04-07 18:20:31,583 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[23]
2015-04-07 18:20:31,583 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[33]
2015-04-07 18:20:31,583 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_, sortedProjectionColumnMap {0=_col0, 12=_col1, 15=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,583 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_, sortedProjectionColumnMap {0=_col0, 12=_col1, 15=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,583 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,584 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col5, 5=_col6, 6=_col9, 7=_col10}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,584 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales={0=cs_sold_date_sk, 1=cs_sold_time_sk, 2=cs_ship_date_sk, 3=cs_bill_customer_sk, 4=cs_bill_cdemo_sk, 5=cs_bill_hdemo_sk, 6=cs_bill_addr_sk, 7=cs_ship_customer_sk, 8=cs_ship_cdemo_sk, 9=cs_ship_hdemo_sk, 10=cs_ship_addr_sk, 11=cs_call_center_sk, 12=cs_catalog_page_sk, 13=cs_ship_mode_sk, 14=cs_warehouse_sk, 15=cs_item_sk, 16=cs_promo_sk, 17=cs_order_number, 18=cs_quantity, 19=cs_wholesale_cost, 20=cs_list_price, 21=cs_sales_price, 22=cs_ext_discount_amt, 23=cs_ext_sales_price, 24=cs_ext_wholesale_cost, 25=cs_ext_list_price, 26=cs_ext_tax, 27=cs_coupon_amt, 28=cs_ext_ship_cost, 29=cs_net_paid, 30=cs_net_paid_inc_tax, 31=cs_net_paid_inc_ship, 32=cs_net_paid_inc_ship_tax, 33=cs_net_profit, 34=cs_sold_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_={0=_col0, 12=_col1, 15=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_/MAP_JOIN_null={0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col5, 5=_col6, 6=_col9, 7=_col10}}
2015-04-07 18:20:31,584 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_sales/_SELECT_/MAP_JOIN_null={}}
2015-04-07 18:20:31,584 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,585 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,585 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,585 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,586 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,586 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,586 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,586 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,587 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,587 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,587 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,587 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,588 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,589 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,590 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,590 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,590 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,590 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,591 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,591 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,591 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,591 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,592 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,592 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,592 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,592 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,593 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,593 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,593 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,593 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,593 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,594 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,594 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,594 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,594 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,595 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,595 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,595 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,595 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,596 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,596 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,596 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,596 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,597 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,597 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,597 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,597 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,597 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,598 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,598 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,599 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,599 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,599 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,600 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,600 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,600 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,600 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,600 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,601 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,601 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,601 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,601 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,602 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,602 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,602 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,602 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,603 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,603 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,603 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,603 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,603 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,604 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,604 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,604 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,605 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,605 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,605 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,605 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,605 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,606 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,606 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,606 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,606 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,606 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,606 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col1, 1=_col2, 2=_col3, 3=_col5, 4=_col6, 5=_col9, 6=_col10}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,607 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={0=_col0}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_/MAP_JOIN_null={0=_col1, 1=_col2, 2=_col3, 3=_col5, 4=_col6, 5=_col9, 6=_col10}}
2015-04-07 18:20:31,607 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_/MAP_JOIN_null={}}
2015-04-07 18:20:31,607 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,608 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,608 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,608 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,608 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,608 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,609 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,609 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,609 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,610 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,610 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,610 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,611 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,611 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,611 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,611 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,611 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,611 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,612 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,612 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,612 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,613 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,613 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,613 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,613 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,613 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,614 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,614 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,614 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,614 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={0=_col0}}
2015-04-07 18:20:31,614 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={}}
2015-04-07 18:20:31,614 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,615 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,615 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,615 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,616 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,617 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,617 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,618 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,618 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,618 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,618 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,619 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,619 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,619 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,620 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,620 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,620 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,620 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,620 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,621 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,621 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,621 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,621 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,622 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,622 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,622 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,622 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,622 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,623 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,623 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={0=_col0}}
2015-04-07 18:20:31,623 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={}}
2015-04-07 18:20:31,623 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,623 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,623 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,624 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,625 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,626 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,627 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,627 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,627 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,627 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,627 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,628 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,628 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,628 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,628 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,629 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,630 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,630 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,630 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,630 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,630 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,631 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,632 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,633 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,634 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,635 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,635 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,635 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,635 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,635 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,636 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,636 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,636 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,636 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,636 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,637 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,637 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,637 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,637 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,637 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,638 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,638 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,638 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,638 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,638 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,639 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,640 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,641 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,642 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,643 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,643 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,643 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,643 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,643 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,644 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,644 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,644 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,644 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,644 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,645 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,645 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,645 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,645 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,645 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,646 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,646 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,646 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,646 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,646 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,647 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,647 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,647 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,647 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,647 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,648 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,649 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,650 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,651 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,651 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,651 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,651 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,651 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,653 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,653 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,654 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,654 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,654 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,654 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,654 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,655 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,655 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,655 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,655 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,655 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,655 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,656 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page, sortedProjectionColumnMap {0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,656 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page, sortedProjectionColumnMap {0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,656 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,656 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,656 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page, sortedProjectionColumnMap {0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,657 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,657 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,657 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,657 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page, sortedProjectionColumnMap {0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,657 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page, sortedProjectionColumnMap {0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,657 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,658 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,658 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,658 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,658 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,658 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,658 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,659 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,660 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col2, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col14}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,660 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col2, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col14}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,660 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,660 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,660 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,660 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,661 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,661 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,661 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,661 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col14}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,661 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col14}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,661 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,662 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,662 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,662 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,663 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,663 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,663 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,663 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,663 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,664 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,664 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,664 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[6](IdentityExpression[2] ConstantVectorExpression[5])
2015-04-07 18:20:31,665 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,665 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,665 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,665 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,665 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,666 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,666 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,666 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,667 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5])
2015-04-07 18:20:31,667 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[5](VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5]))
2015-04-07 18:20:31,667 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col14}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,667 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col14}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,667 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: GBY...
2015-04-07 18:20:31,668 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,668 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,668 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,668 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,668 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,668 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,669 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,669 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page={0=cp_catalog_page_sk, 1=cp_catalog_page_id, 2=cp_start_date_sk, 3=cp_end_date_sk, 4=cp_department, 5=cp_catalog_number, 6=cp_catalog_page_number, 7=cp_description, 8=cp_type}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_={0=_col0, 1=_col1}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null={0=_col2, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col14}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null={0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col14}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col14}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_={0=_col1, 4=_col0, 5=_col3, 6=_col2}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_/_GROUPBY_={0=_col0, 1=_col1, 2=_col2, 3=_col3}}
2015-04-07 18:20:31,669 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/catalog_page/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_/_GROUPBY_={}}
2015-04-07 18:20:31,669 INFO [main]: physical.Vectorizer (Vectorizer.java:validateReduceWork(462)) - Validating ReduceWork...
2015-04-07 18:20:31,670 DEBUG [main]: lazybinary.LazyBinarySerDe (LazyBinarySerDe.java:initialize(131)) - LazyBinarySerDe initialized with: columnNames=[_col0, _col1, _col2] columnTypes=[double, double, double]
2015-04-07 18:20:31,670 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,670 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,670 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,670 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,671 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,672 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,672 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,672 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,672 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,672 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,673 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,673 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,673 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,673 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,673 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,673 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,673 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,674 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,674 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,674 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,674 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,674 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,674 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,675 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,675 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,675 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,675 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,675 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,675 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,676 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,676 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,676 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,676 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,676 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,676 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,677 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,678 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,678 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,678 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,678 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,678 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,679 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,680 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,681 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,681 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,681 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,681 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,681 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,681 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,682 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,683 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,684 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,684 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,684 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,684 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns, sortedProjectionColumnMap {0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,684 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns, sortedProjectionColumnMap {0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,685 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,685 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,685 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns, sortedProjectionColumnMap {0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,685 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,685 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,686 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[13]
2015-04-07 18:20:31,686 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[15]
2015-04-07 18:20:31,686 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[23]
2015-04-07 18:20:31,688 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns, sortedProjectionColumnMap {0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,688 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns, sortedProjectionColumnMap {0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,688 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,689 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns/_SELECT_, sortedProjectionColumnMap {2=_col0, 13=_col1, 15=_col2, 23=_col3}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,689 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns={0=wr_returned_date_sk, 1=wr_returned_time_sk, 2=wr_item_sk, 3=wr_refunded_customer_sk, 4=wr_refunded_cdemo_sk, 5=wr_refunded_hdemo_sk, 6=wr_refunded_addr_sk, 7=wr_returning_customer_sk, 8=wr_returning_cdemo_sk, 9=wr_returning_hdemo_sk, 10=wr_returning_addr_sk, 11=wr_web_page_sk, 12=wr_reason_sk, 13=wr_order_number, 14=wr_return_quantity, 15=wr_return_amt, 16=wr_return_tax, 17=wr_return_amt_inc_tax, 18=wr_fee, 19=wr_return_ship_cost, 20=wr_refunded_cash, 21=wr_reversed_charge, 22=wr_account_credit, 23=wr_net_loss, 24=wr_returned_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns/_SELECT_={2=_col0, 13=_col1, 15=_col2, 23=_col3}}
2015-04-07 18:20:31,689 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_returns/_SELECT_={}}
2015-04-07 18:20:31,689 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,689 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,689 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,690 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,690 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,690 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,690 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,690 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,691 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,691 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,691 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,691 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,691 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,691 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site, sortedProjectionColumnMap {0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,692 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site, sortedProjectionColumnMap {0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,692 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,692 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,692 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site, sortedProjectionColumnMap {0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,692 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,693 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,693 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,693 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site, sortedProjectionColumnMap {0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,693 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site, sortedProjectionColumnMap {0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,693 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,694 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site/_SELECT_, sortedProjectionColumnMap {0=_col0, 1=_col1}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,694 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site={0=web_site_sk, 1=web_site_id, 2=web_rec_start_date, 3=web_rec_end_date, 4=web_name, 5=web_open_date_sk, 6=web_close_date_sk, 7=web_class, 8=web_manager, 9=web_mkt_id, 10=web_mkt_class, 11=web_mkt_desc, 12=web_market_manager, 13=web_company_id, 14=web_company_name, 15=web_street_number, 16=web_street_name, 17=web_street_type, 18=web_suite_number, 19=web_city, 20=web_county, 21=web_state, 22=web_zip, 23=web_country, 24=web_gmt_offset, 25=web_tax_percentage}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site/_SELECT_={0=_col0, 1=_col1}}
2015-04-07 18:20:31,694 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_site/_SELECT_={}}
2015-04-07 18:20:31,694 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,695 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,695 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,695 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,695 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,695 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,696 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,696 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,696 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,696 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,696 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,697 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,697 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,697 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,697 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,698 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,698 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,698 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,698 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,698 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,699 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,699 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,699 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,699 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,700 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,700 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,700 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,700 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,701 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,701 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,701 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,701 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,701 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,702 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,702 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,702 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,702 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,703 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,703 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,703 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,703 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,704 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,704 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,704 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,704 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,704 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,705 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,705 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,705 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,705 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,705 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,706 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,706 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,706 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,707 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [string] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,707 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [double] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,707 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [binary] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.BytesWritable)
2015-04-07 18:20:31,707 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [date] accepted = [bigint] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,707 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [date] accepted = [date] method = public org.apache.hadoop.io.Text org.apache.hadoop.hive.ql.udf.UDFToString.evaluate(org.apache.hadoop.hive.serde2.io.DateWritable)
2015-04-07 18:20:31,708 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringColumnBetween[-1]
2015-04-07 18:20:31,708 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,708 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringColumnBetween[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,708 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,708 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,709 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,709 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,709 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim, sortedProjectionColumnMap {0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,709 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,709 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,710 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={0=d_date_sk, 1=d_date_id, 2=d_date, 3=d_month_seq, 4=d_week_seq, 5=d_quarter_seq, 6=d_year, 7=d_dow, 8=d_moy, 9=d_dom, 10=d_qoy, 11=d_fy_year, 12=d_fy_quarter_seq, 13=d_fy_week_seq, 14=d_day_name, 15=d_quarter_name, 16=d_holiday, 17=d_weekend, 18=d_following_holiday, 19=d_first_dom, 20=d_last_dom, 21=d_same_day_ly, 22=d_same_day_lq, 23=d_current_day, 24=d_current_week, 25=d_current_month, 26=d_current_quarter, 27=d_current_year}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={0=_col0}}
2015-04-07 18:20:31,710 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/date_dim/_SELECT_={}}
2015-04-07 18:20:31,710 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,711 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,712 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,712 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,712 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,713 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,713 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,713 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,714 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,714 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,714 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,714 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,714 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,714 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,715 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterDoubleColGreaterDoubleScalar[-1]
2015-04-07 18:20:31,716 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,716 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterDoubleColGreaterDoubleScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,716 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,716 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,716 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,717 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,717 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item, sortedProjectionColumnMap {0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,717 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,717 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,719 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={0=i_item_sk, 1=i_item_id, 2=i_rec_start_date, 3=i_rec_end_date, 4=i_item_desc, 5=i_current_price, 6=i_wholesale_cost, 7=i_brand_id, 8=i_brand, 9=i_class_id, 10=i_class, 11=i_category_id, 12=i_category, 13=i_manufact_id, 14=i_manufact, 15=i_size, 16=i_formulation, 17=i_color, 18=i_units, 19=i_container, 20=i_manager_id, 21=i_product_name}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={0=_col0}}
2015-04-07 18:20:31,719 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/item/_SELECT_={}}
2015-04-07 18:20:31,719 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,720 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,720 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,720 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,720 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,721 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,721 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,721 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,722 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,722 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,722 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,722 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,723 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,723 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,723 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,723 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,723 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,723 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,724 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,724 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterStringGroupColEqualStringScalar[-1]
2015-04-07 18:20:31,724 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,724 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterStringGroupColEqualStringScalar[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,725 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,725 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,725 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,725 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,725 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion, sortedProjectionColumnMap {0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,726 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,726 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator RS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_, sortedProjectionColumnMap {0=_col0}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,726 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={0=p_promo_sk, 1=p_promo_id, 2=p_start_date_sk, 3=p_end_date_sk, 4=p_item_sk, 5=p_cost, 6=p_response_target, 7=p_promo_name, 8=p_channel_dmail, 9=p_channel_email, 10=p_channel_catalog, 11=p_channel_tv, 12=p_channel_radio, 13=p_channel_press, 14=p_channel_event, 15=p_channel_demo, 16=p_channel_details, 17=p_purpose, 18=p_discount_active}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={0=_col0}}
2015-04-07 18:20:31,726 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/promotion/_SELECT_={}}
2015-04-07 18:20:31,727 INFO [main]: physical.Vectorizer (Vectorizer.java:validateMapWork(349)) - Validating MapWork...
2015-04-07 18:20:31,727 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,727 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,727 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,728 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,728 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,728 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,728 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,728 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,729 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,730 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,731 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,732 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,733 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,734 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,735 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,736 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,736 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,736 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,736 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,736 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,737 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,737 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,737 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,737 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,738 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,739 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,739 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,739 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,739 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,739 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,740 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,741 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,741 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,741 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,741 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,742 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,743 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,744 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,745 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,746 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,747 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,748 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,749 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,749 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,749 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,749 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,749 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,750 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,750 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,750 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,750 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,750 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,751 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,751 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,751 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,751 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,751 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,752 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,752 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,752 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,752 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,752 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,754 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,755 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,755 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,755 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,755 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,755 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,756 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,756 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,756 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,756 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,756 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,757 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,757 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,757 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,757 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,758 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,759 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,760 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,761 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,762 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,763 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,764 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,765 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,765 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,765 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,765 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,765 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,766 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,766 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,766 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,766 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,766 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,767 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,767 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,767 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,767 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,767 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,768 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,768 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,768 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,768 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,768 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0])
2015-04-07 18:20:31,769 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[0](VectorCoalesce[1](IdentityExpression[0] ConstantVectorExpression[0]))
2015-04-07 18:20:31,769 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,769 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,769 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,770 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,770 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,770 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,770 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,770 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,771 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,772 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,773 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,774 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,775 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,776 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,777 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,777 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,777 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,777 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,777 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,778 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,778 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,778 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,778 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,778 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,779 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,780 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,781 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,782 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,783 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,784 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,785 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,785 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,785 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,786 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,787 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,788 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,789 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,790 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,792 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,792 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,793 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,793 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,793 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,793 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,794 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,794 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,794 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,794 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,794 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,795 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,796 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,797 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,798 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,798 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,798 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,798 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,799 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,799 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,799 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,799 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,799 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,800 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,801 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,802 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,802 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,802 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,802 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,802 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,803 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,803 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,803 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,803 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,803 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,804 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,805 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,805 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,805 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,805 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,806 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,806 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,806 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,806 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,806 INFO [main]: physical.Vectorizer (Vectorizer.java:vectorizeMapWork(383)) - Vectorizing MapWork...
2015-04-07 18:20:31,806 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: TS...
2015-04-07 18:20:31,807 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(692)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales, sortedProjectionColumnMap {0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,807 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator TS vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales, sortedProjectionColumnMap {0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,807 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: FIL...
2015-04-07 18:20:31,808 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,808 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,808 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,808 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,808 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,809 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = SelectColumnIsNotNull[-1]
2015-04-07 18:20:31,809 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = boolean, Vectorized Expression = FilterExprAndExpr[-1](FilterExprAndExpr[-1](FilterExprAndExpr[-1](SelectColumnIsNotNull[-1] SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1]) SelectColumnIsNotNull[-1])
2015-04-07 18:20:31,809 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator FIL vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales, sortedProjectionColumnMap {0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,809 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,809 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[13]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[16]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[17]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[23]
2015-04-07 18:20:31,810 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[33]
2015-04-07 18:20:31,811 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales, sortedProjectionColumnMap {0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,811 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales, sortedProjectionColumnMap {0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,811 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,811 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,811 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[17]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[13]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[16]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[23]
2015-04-07 18:20:31,812 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[33]
2015-04-07 18:20:31,813 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_, sortedProjectionColumnMap {0=_col0, 3=_col1, 13=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,813 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_, sortedProjectionColumnMap {0=_col0, 3=_col1, 13=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,813 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,813 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,813 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,813 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,814 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,814 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,814 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,814 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,814 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[7]
2015-04-07 18:20:31,814 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col5, 5=_col6, 6=_col9, 7=_col10}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,815 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col5, 5=_col6, 6=_col9, 7=_col10}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,815 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,815 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,815 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,815 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,815 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,816 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,816 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,816 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,816 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[7]
2015-04-07 18:20:31,816 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col3, 3=_col5, 4=_col6, 5=_col9, 6=_col10, 7=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,816 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col0, 1=_col1, 2=_col3, 3=_col5, 4=_col6, 5=_col9, 6=_col10, 7=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,817 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,817 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,817 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,817 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,817 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,817 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,818 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,818 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,818 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col1, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,818 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col1, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,818 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: MAPJOIN...
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = int, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[1]
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,819 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,820 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator MAPJOIN vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,820 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator MAPJOIN added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col12}, sortedScratchColumnTypeMap {}
2015-04-07 18:20:31,820 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: SEL...
2015-04-07 18:20:31,820 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,820 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,821 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,821 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,821 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,821 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,821 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,822 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,822 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[2]
2015-04-07 18:20:31,822 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,822 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[6](IdentityExpression[2] ConstantVectorExpression[5])
2015-04-07 18:20:31,823 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [decimal(38,18)] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.HiveDecimalWritable)
2015-04-07 18:20:31,823 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [bigint] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.LongWritable)
2015-04-07 18:20:31,823 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [double] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.DoubleWritable)
2015-04-07 18:20:31,823 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [string] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.Text)
2015-04-07 18:20:31,823 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method didn't match: passed = [int] accepted = [timestamp] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.hive.serde2.io.TimestampWritable)
2015-04-07 18:20:31,824 DEBUG [main]: exec.FunctionRegistry (FunctionRegistry.java:getMethodInternal(1135)) - Method did match: passed = [int] accepted = [int] method = public org.apache.hadoop.io.FloatWritable org.apache.hadoop.hive.ql.udf.UDFToFloat.evaluate(org.apache.hadoop.io.IntWritable)
2015-04-07 18:20:31,824 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[3]
2015-04-07 18:20:31,824 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = ConstantVectorExpression[5]
2015-04-07 18:20:31,824 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5])
2015-04-07 18:20:31,825 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = DoubleColSubtractDoubleColumn[5](VectorCoalesce[7](IdentityExpression[3] ConstantVectorExpression[5]))
2015-04-07 18:20:31,825 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col12}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,825 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null, sortedProjectionColumnMap {0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col12}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,827 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: GBY...
2015-04-07 18:20:31,827 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[4]
2015-04-07 18:20:31,827 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,827 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[6]
2015-04-07 18:20:31,828 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = float, Vectorized Expression = IdentityExpression[5]
2015-04-07 18:20:31,828 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(723)) - Vectorized MapWork operator OP vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,828 DEBUG [main]: physical.Vectorizer (Vectorizer.java:process(725)) - Vectorized MapWork operator OP added vectorization context Context key hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_, sortedProjectionColumnMap {0=_col1, 4=_col0, 5=_col3, 6=_col2}, sortedScratchColumnTypeMap {5=Double, 6=Double, 7=Double}
2015-04-07 18:20:31,828 INFO [main]: physical.Vectorizer (Vectorizer.java:process(674)) - MapWorkVectorizationNodeProcessor processing Operator: RS...
2015-04-07 18:20:31,829 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1362)) - sortedAllColumnVectorMaps {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales={0=ws_sold_date_sk, 1=ws_sold_time_sk, 2=ws_ship_date_sk, 3=ws_item_sk, 4=ws_bill_customer_sk, 5=ws_bill_cdemo_sk, 6=ws_bill_hdemo_sk, 7=ws_bill_addr_sk, 8=ws_ship_customer_sk, 9=ws_ship_cdemo_sk, 10=ws_ship_hdemo_sk, 11=ws_ship_addr_sk, 12=ws_web_page_sk, 13=ws_web_site_sk, 14=ws_ship_mode_sk, 15=ws_warehouse_sk, 16=ws_promo_sk, 17=ws_order_number, 18=ws_quantity, 19=ws_wholesale_cost, 20=ws_list_price, 21=ws_sales_price, 22=ws_ext_discount_amt, 23=ws_ext_sales_price, 24=ws_ext_wholesale_cost, 25=ws_ext_list_price, 26=ws_ext_tax, 27=ws_coupon_amt, 28=ws_ext_ship_cost, 29=ws_net_paid, 30=ws_net_paid_inc_tax, 31=ws_net_paid_inc_ship, 32=ws_net_paid_inc_ship_tax, 33=ws_net_profit, 34=ws_sold_date}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_={0=_col0, 3=_col1, 13=_col2, 16=_col3, 17=_col4, 23=_col5, 33=_col6}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null={0=_col0, 1=_col1, 2=_col2, 3=_col3, 4=_col5, 5=_col6, 6=_col9, 7=_col10}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null={0=_col0, 1=_col1, 2=_col3, 3=_col5, 4=_col6, 5=_col9, 6=_col10, 7=_col12}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={0=_col1, 1=_col3, 2=_col5, 3=_col6, 4=_col9, 5=_col10, 6=_col12}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={0=_col3, 1=_col5, 2=_col6, 3=_col9, 4=_col10, 5=_col12}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={0=_col5, 1=_col6, 2=_col9, 3=_col10, 4=_col12}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_={0=_col1, 4=_col0, 5=_col3, 6=_col2}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_/_GROUPBY_={0=_col0, 1=_col1, 2=_col2, 3=_col3}}
2015-04-07 18:20:31,829 DEBUG [main]: physical.Vectorizer (Vectorizer.java:debugDisplayAllMaps(1370)) - sortedAllScratchColumnVectorTypeMap {hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_={5=Double, 6=Double, 7=Double}, hdfs://cn105-10.l42scl.hortonworks.com:8020/apps/hive/warehouse/tpcds_bin_orc_200.db/web_sales/_SELECT_/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/MAP_JOIN_null/_SELECT_/_GROUPBY_={}}
2015-04-07 18:20:31,829 INFO [main]: physical.Vectorizer (Vectorizer.java:validateReduceWork(462)) - Validating ReduceWork...
2015-04-07 18:20:31,829 DEBUG [main]: lazybinary.LazyBinarySerDe (LazyBinarySerDe.java:initialize(131)) - LazyBinarySerDe initialized with: columnNames=[_col0, _col1, _col2] columnTypes=[double, double, double]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,830 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,831 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,831 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,831 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,831 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,831 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,831 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,832 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,832 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,832 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,832 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,832 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,833 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,833 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,833 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,833 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,833 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,833 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,834 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,835 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,835 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,835 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,835 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,835 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,836 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,836 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1069)) - Grouping sets not supported in vector mode
2015-04-07 18:20:31,836 INFO [main]: physical.Vectorizer (Vectorizer.java:process(565)) - ReduceWork Operator: GBY could not be vectorized.
2015-04-07 18:20:31,836 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,836 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,836 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,837 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,838 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,838 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,838 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = ConstantVectorExpression[0]
2015-04-07 18:20:31,838 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = StringScalarConcatStringGroupCol[0]
2015-04-07 18:20:31,838 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = string, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,839 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,840 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,840 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,840 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,840 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1093)) - Reduce GROUP BY mode is MERGEPARTIAL
2015-04-07 18:20:31,840 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,840 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,841 DEBUG [main]: vector.VectorizationContext (VectorizationContext.java:getVectorExpression(437)) - Input Expression = double, Vectorized Expression = IdentityExpression[0]
2015-04-07 18:20:31,841 INFO [main]: physical.Vectorizer (Vectorizer.java:validateGroupByOperator(1103)) - Reduce-side GROUP BY will process key groups
2015-04-07 18:20:31,841 DEBUG [main]: parse.TezCompiler (TezCompiler.java:optimizeTaskPlan(476)) - Skipping stage id rearranger
2015-04-07 18:20:31,843 INFO [main]: parse.CalcitePlanner (SemanticAnalyzer.java:analyzeInternal(10081)) - Completed plan generation
2015-04-07 18:20:31,843 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:validate(10424)) - validation start
2015-04-07 18:20:31,843 DEBUG [main]: parse.CalcitePlanner (SemanticAnalyzer.java:validate(10480)) - not validating writeEntity, because entity is neither table nor partition
2015-04-07 18:20:31,849 INFO [main]: ql.Driver (Driver.java:compile(437)) - Semantic Analysis Completed
2015-04-07 18:20:31,849 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,849 INFO [main]: ql.Driver (Driver.java:getSchema(241)) - Returning Hive schema: Schema(fieldSchemas:[FieldSchema(name:Explain, type:string, comment:null)], properties:null)
2015-04-07 18:20:31,849 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,849 INFO [main]: ql.Driver (Driver.java:checkConcurrency(161)) - Concurrency mode is disabled, not creating a lock manager
2015-04-07 18:20:31,849 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,850 INFO [main]: ql.Driver (Driver.java:execute(1320)) - Starting command: explain with ssr as (select s_store_id as store_id, sum(ss_ext_sales_price) as sales, sum(coalesce(sr_return_amt, 0)) as returns, sum(ss_net_profit - coalesce(sr_net_loss, 0)) as profit from store_sales left outer join store_returns on (ss_item_sk = sr_item_sk and ss_ticket_number = sr_ticket_number), date_dim, store, item, promotion where ss_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ss_store_sk = s_store_sk and ss_item_sk = i_item_sk and i_current_price > 50 and ss_promo_sk = p_promo_sk and p_channel_tv = 'N' group by s_store_id) , csr as (select cp_catalog_page_id as catalog_page_id, sum(cs_ext_sales_price) as sales, sum(coalesce(cr_return_amount, 0)) as returns, sum(cs_net_profit - coalesce(cr_net_loss, 0)) as profit from catalog_sales left outer join catalog_returns on (cs_item_sk = cr_item_sk and cs_order_number = cr_order_number), date_dim, catalog_page, item, promotion where cs_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and cs_catalog_page_sk = cp_catalog_page_sk and cs_item_sk = i_item_sk and i_current_price > 50 and cs_promo_sk = p_promo_sk and p_channel_tv = 'N' group by cp_catalog_page_id) , wsr as (select web_site_id, sum(ws_ext_sales_price) as sales, sum(coalesce(wr_return_amt, 0)) as returns, sum(ws_net_profit - coalesce(wr_net_loss, 0)) as profit from web_sales left outer join web_returns on (ws_item_sk = wr_item_sk and ws_order_number = wr_order_number), date_dim, web_site, item, promotion where ws_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ws_web_site_sk = web_site_sk and ws_item_sk = i_item_sk and i_current_price > 50 and ws_promo_sk = p_promo_sk and p_channel_tv = 'N' group by web_site_id) select channel , id , sum(sales) as sales , sum(returns) as returns , sum(profit) as profit from (select 'store channel' as channel , concat('store', store_id) as id , sales , returns , profit from ssr union all select 'catalog channel' as channel , concat('catalog_page', catalog_page_id) as id , sales , returns , profit from csr union all select 'web channel' as channel , concat('web_site', web_site_id) as id , sales , returns , profit from wsr ) x group by channel, id with rollup order by channel ,id limit 100
2015-04-07 18:20:31,850 INFO [main]: hooks.ATSHook (ATSHook.java:(84)) - Created ATS Hook
2015-04-07 18:20:31,850 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,850 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,852 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:31,852 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,852 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:31,852 INFO [main]: ql.Driver (Driver.java:launchTask(1639)) - Starting task [Stage-3:EXPLAIN] in serial mode
2015-04-07 18:20:32,201 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:32,201 INFO [main]: hooks.ATSHook (ATSHook.java:(84)) - Created ATS Hook
2015-04-07 18:20:32,201 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:32,201 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:32,202 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:32,202 INFO [main]: ql.Driver (SessionState.java:printInfo(949)) - OK
2015-04-07 18:20:32,202 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:32,202 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:32,202 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -
2015-04-07 18:20:32,250 DEBUG [main]: ql.Driver (DriverContext.java:shutdown(132)) - Shutting down query explain with ssr as (select s_store_id as store_id, sum(ss_ext_sales_price) as sales, sum(coalesce(sr_return_amt, 0)) as returns, sum(ss_net_profit - coalesce(sr_net_loss, 0)) as profit from store_sales left outer join store_returns on (ss_item_sk = sr_item_sk and ss_ticket_number = sr_ticket_number), date_dim, store, item, promotion where ss_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ss_store_sk = s_store_sk and ss_item_sk = i_item_sk and i_current_price > 50 and ss_promo_sk = p_promo_sk and p_channel_tv = 'N' group by s_store_id) , csr as (select cp_catalog_page_id as catalog_page_id, sum(cs_ext_sales_price) as sales, sum(coalesce(cr_return_amount, 0)) as returns, sum(cs_net_profit - coalesce(cr_net_loss, 0)) as profit from catalog_sales left outer join catalog_returns on (cs_item_sk = cr_item_sk and cs_order_number = cr_order_number), date_dim, catalog_page, item, promotion where cs_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and cs_catalog_page_sk = cp_catalog_page_sk and cs_item_sk = i_item_sk and i_current_price > 50 and cs_promo_sk = p_promo_sk and p_channel_tv = 'N' group by cp_catalog_page_id) , wsr as (select web_site_id, sum(ws_ext_sales_price) as sales, sum(coalesce(wr_return_amt, 0)) as returns, sum(ws_net_profit - coalesce(wr_net_loss, 0)) as profit from web_sales left outer join web_returns on (ws_item_sk = wr_item_sk and ws_order_number = wr_order_number), date_dim, web_site, item, promotion where ws_sold_date_sk = d_date_sk and d_date between cast('1998-08-04' as date) and (cast('1998-09-04' as date)) and ws_web_site_sk = web_site_sk and ws_item_sk = i_item_sk and i_current_price > 50 and ws_promo_sk = p_promo_sk and p_channel_tv = 'N' group by web_site_id) select channel , id , sum(sales) as sales , sum(returns) as returns , sum(profit) as profit from (select 'store channel' as channel , concat('store', store_id) as id , sales , returns , profit from ssr union all select 'catalog channel' as channel , concat('catalog_page', catalog_page_id) as id , sales , returns , profit from csr union all select 'web channel' as channel , concat('web_site', web_site_id) as id , sales , returns , profit from wsr ) x group by channel, id with rollup order by channel ,id limit 100
2015-04-07 18:20:32,256 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #131
2015-04-07 18:20:32,258 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #131
2015-04-07 18:20:32,258 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: delete took 2ms
2015-04-07 18:20:32,261 DEBUG [IPC Parameter Sending Thread #1]: ipc.Client (Client.java:run(1024)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar sending #132
2015-04-07 18:20:32,262 DEBUG [IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar]: ipc.Client (Client.java:receiveRpcResponse(1081)) - IPC Client (257463547) connection to cn105-10.l42scl.hortonworks.com/172.21.128.105:8020 from mmokhtar got value #132
2015-04-07 18:20:32,262 DEBUG [main]: ipc.ProtobufRpcEngine (ProtobufRpcEngine.java:invoke(253)) - Call: delete took 1ms
2015-04-07 18:20:32,262 INFO [main]: CliDriver (SessionState.java:printInfo(949)) - Time taken: 11.303 seconds, Fetched: 665 row(s)
2015-04-07 18:20:32,262 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogBegin(121)) -
2015-04-07 18:20:32,263 INFO [main]: log.PerfLogger (PerfLogger.java:PerfLogEnd(148)) -