Commit ebba0a1d ebba0a1d9475edd6272372f2831d0385fe1276e5 by zhanghao

commit

1 parent 9e61038a
...@@ -2,5 +2,5 @@ use testdb; ...@@ -2,5 +2,5 @@ use testdb;
2 2
3 INSERT OVERWRITE TABLE biz_data_count_debug 3 INSERT OVERWRITE TABLE biz_data_count_debug
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 (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>${hivevar:myTimestamp}) my_debug 5 from (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>'${hivevar:myTimestamp}') my_debug
6 group by method,biz_data; 6 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_debug 3 INSERT OVERWRITE TABLE biz_data_response_debug
4 select method,biz_data,uid,timestamp,response 4 select method,biz_data,uid,timestamp,response
5 from qa_log_debug 5 from qa_log_debug
6 where method is not null and method!='N/A' and timestamp>${hivevar:myTimestamp};
...\ No newline at end of file ...\ No newline at end of file
6 where method is not null and method!='N/A' and timestamp>'${hivevar:myTimestamp}';
...\ No newline at end of file ...\ No newline at end of file
......