Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2016-09-27 05:02:35 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2016-09-27 05:02:35 +0300
commit9a2ef80577e54c2ca839decd2bcada41cb57c660 (patch)
treefac7b05b73d8c2685b4818d14bf7fbca53017a50 /plugins/Live/tests/Integration
parent8ab36f57d4c66d3833ec61197c36c1e4f9e350f4 (diff)
Improve performance of Visitor Log (#10568)
* Improve performance of Visitor Log by tweaking the MySQL query fixes #10567 * fix integration tests
Diffstat (limited to 'plugins/Live/tests/Integration')
-rw-r--r--plugins/Live/tests/Integration/ModelTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Live/tests/Integration/ModelTest.php b/plugins/Live/tests/Integration/ModelTest.php
index 3002b847ba..5f12a69004 100644
--- a/plugins/Live/tests/Integration/ModelTest.php
+++ b/plugins/Live/tests/Integration/ModelTest.php
@@ -52,7 +52,7 @@ class ModelTest extends IntegrationTestCase
WHERE log_visit.idsite in (?)
AND log_visit.visit_last_action_time >= ?
AND log_visit.visit_last_action_time <= ?
- ORDER BY idsite, visit_last_action_time DESC
+ ORDER BY idsite DESC, visit_last_action_time DESC
LIMIT 0, 100
) AS sub
GROUP BY sub.idvisit
@@ -132,7 +132,7 @@ class ModelTest extends IntegrationTestCase
WHERE log_visit.idsite in (?)
AND log_visit.visit_last_action_time >= ?
AND log_visit.visit_last_action_time <= ?
- ORDER BY idsite, visit_last_action_time DESC
+ ORDER BY idsite DESC, visit_last_action_time DESC
LIMIT 15, 100
) AS sub
GROUP BY sub.idvisit
@@ -177,10 +177,10 @@ class ModelTest extends IntegrationTestCase
AND log_visit.visit_last_action_time >= ?
AND log_visit.visit_last_action_time <= ? )
AND ( log_link_visit_action.custom_var_k1 = ? )
- ORDER BY idsite, visit_last_action_time DESC
+ ORDER BY idsite DESC, visit_last_action_time DESC
LIMIT 10, 1000
) AS log_inner
- ORDER BY idsite, visit_last_action_time DESC
+ ORDER BY idsite DESC, visit_last_action_time DESC
) AS sub
GROUP BY sub.idvisit
ORDER BY sub.visit_last_action_time DESC