Commit a085eed9 a085eed9c9fa6f33d7bc708c84c224f5058a2ef2 by 张浩

commit

1 parent 9e639499
...@@ -3,5 +3,5 @@ use testdb; ...@@ -3,5 +3,5 @@ use testdb;
3 INSERT OVERWRITE TABLE biz_data_count 3 INSERT OVERWRITE TABLE biz_data_count
4 select method,biz_data,count(1) as count,max(timestamp) as timestamp 4 select method,biz_data,count(1) as count,max(timestamp) as timestamp
5 from qa_log 5 from qa_log
6 where method='com.ai.handler.plan.detail.index.info' 6 where method is not null and method!='N/A' and method='com.ai.handler.plan.detail.index.info'
7 group by method,biz_data; 7 group by method,biz_data;
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -3,4 +3,4 @@ use testdb; ...@@ -3,4 +3,4 @@ use testdb;
3 INSERT OVERWRITE TABLE biz_data_response 3 INSERT OVERWRITE TABLE biz_data_response
4 select method,biz_data,uid,timestamp,response 4 select method,biz_data,uid,timestamp,response
5 from qa_log 5 from qa_log
6 where method='com.ai.handler.plan.detail.index.info';
...\ No newline at end of file ...\ No newline at end of file
6 where method is not null and method!='N/A' and method='com.ai.handler.plan.detail.index.info';
...\ No newline at end of file ...\ No newline at end of file
......