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:
authorStefan Giehl <stefan@piwik.org>2018-04-23 07:20:37 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2018-04-23 07:20:37 +0300
commit14ba6a44029e29a9336efdd482875df641bd2a82 (patch)
tree12e97f7af52a0cde48142674c3b79dcb1b628c4f /plugins/Live/tests/Integration
parenteff059cd5825fc8967673cb0a2f96ed7564f3c65 (diff)
Show information in visitor profile if dataset was "truncated" (#12376)
* Show overall visit count in visitor profile if there have been more visits than shown in the summary * update/ add 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 5f12a69004..2101829550 100644
--- a/plugins/Live/tests/Integration/ModelTest.php
+++ b/plugins/Live/tests/Integration/ModelTest.php
@@ -45,7 +45,7 @@ class ModelTest extends IntegrationTestCase
$minTimestamp = false,
$filterSortOrder = false
);
- $expectedSql = ' SELECT sub.* FROM
+ $expectedSql = ' SELECT SQL_CALC_FOUND_ROWS sub.* FROM
(
SELECT log_visit.*
FROM ' . Common::prefixTable('log_visit') . ' AS log_visit
@@ -86,7 +86,7 @@ class ModelTest extends IntegrationTestCase
$minTimestamp = false,
$filterSortOrder = false
);
- $expectedSql = ' SELECT sub.* FROM
+ $expectedSql = ' SELECT SQL_CALC_FOUND_ROWS sub.* FROM
(
SELECT log_visit.*
FROM ' . Common::prefixTable('log_visit') . ' AS log_visit
@@ -125,7 +125,7 @@ class ModelTest extends IntegrationTestCase
$minTimestamp = false,
$filterSortOrder = false
);
- $expectedSql = ' SELECT sub.* FROM
+ $expectedSql = ' SELECT SQL_CALC_FOUND_ROWS sub.* FROM
(
SELECT log_visit.*
FROM ' . Common::prefixTable('log_visit') . ' AS log_visit
@@ -163,7 +163,7 @@ class ModelTest extends IntegrationTestCase
$minTimestamp = false,
$filterSortOrder = false
);
- $expectedSql = ' SELECT sub.* FROM
+ $expectedSql = ' SELECT SQL_CALC_FOUND_ROWS sub.* FROM
(
SELECT log_inner.*