Skip to content

Commit

Permalink
Merge pull request MyCATApache#104 from sohudo/master
Browse files Browse the repository at this point in the history
高频耗时小数点问题
  • Loading branch information
mycatmerger committed Mar 22, 2016
2 parents adfaa48 + 71bc211 commit 8c306f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/webapp/page/sql/sqlhigh.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,10 @@ <h4 class="modal-title" id="mysqlexplain">高频SQL分析信息</h4>
width : 100,
align : 'left',
sortable : true,
type : 'number'
renderer: function(val){
//console.debug( "AVG_TIME:" + val);
return val.toFixed();
}
},
{
title : '最大耗时(ms)',
Expand Down

0 comments on commit 8c306f4

Please sign in to comment.