Commit 9e61038a 9e61038a9bf76c6c6f87e5863f2bd2ead7157d18 by zhanghao

commit

1 parent 39fd414a
...@@ -2,5 +2,5 @@ use testdb; ...@@ -2,5 +2,5 @@ use testdb;
2 2
3 INSERT OVERWRITE TABLE method_count_debug 3 INSERT OVERWRITE TABLE method_count_debug
4 select method,count(1) as count,max(timestamp) as timestamp 4 select method,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; 6 group by method;
...\ No newline at end of file ...\ No newline at end of file
......