Commit eb1c59da eb1c59da611e0e11f1e979f43a42e2d5dd959f6d by zhanghao

commit

1 parent d109de81
use testdb;
INSERT OVERWRITE TABLE biz_data_response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response,trace
from qa_log
where method is not null and method!='N/A';
\ No newline at end of file
......
......@@ -44,7 +44,8 @@ version string,
imei string,
app_id string,
timestamp string,
response string
response string,
trace string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE tc_response(
......@@ -57,5 +58,6 @@ version string,
imei string,
app_id string,
timestamp string,
response string
response string,
trace string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
\ No newline at end of file
......
use testdb;
INSERT OVERWRITE TABLE tc_response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response,trace
from qa_log
where method is not null and method!='N/A'
and (method='com.lejane.handler.common.sidebar.operate.query.new.v3'
......