From 0ff08f077ea03f49fc85c0f38ada6ec39a5eaa0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E8=BE=B0=E8=BD=A9?= Date: Tue, 25 Jun 2024 13:55:33 +0800 Subject: [PATCH] * [bug] fix bug for chart tao getRows few param --- module/chart/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/chart/model.php b/module/chart/model.php index 20f000a92d..5182d96efa 100644 --- a/module/chart/model.php +++ b/module/chart/model.php @@ -530,7 +530,7 @@ class chartModel extends model $metric = $metrics[$i]; $agg = $aggs[$i]; - $rows = $this->chartTao->getRows($defaultSql, $filters, $date, $group, $metric, $agg); + $rows = $this->chartTao->getRows($defaultSql, $filters, $date, $group, $metric, $agg, $driver); $stat = $this->chartTao->processRows($rows, $date, $group, $metric); if($sort) arsort($stat);