Commit fa007b43 fa007b435690eb386603f172dba09b65a15c5f1e by zhanghao

commit

1 parent 89bb1333
......@@ -37,6 +37,10 @@ timestamp string,
response string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE project_config_debug(
timestamp string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE huo_dong_ru_kou_debug(
method string,
biz_data string,
......
use testdb;
INSERT OVERWRITE TABLE biz_data_response_debug
select max(timestamp) as timestamp
from qa_log_debug
where method is not null and method!='N/A';
\ No newline at end of file
......