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@matomo.org>2019-03-11 16:26:37 +0300
committerGitHub <noreply@github.com>2019-03-11 16:26:37 +0300
commite1c1f12593034ae1fc0bfcbd17bf2cf908cac3bf (patch)
tree0b36ab8f848acc8b8281b10be8cde9507440d7bb /plugins/UserId
parentef48b1b97b00cec4540106fff49feaefaa1bf059 (diff)
Make it possible to define joins for log tables using `getWaysToJoinToOtherLogTables` (#14062)
* Make it possible to define joins for log tables using getWaysToJoinToOtherLogTables * Adds some tests for custom log table joins * add missing log tables joined using getWaysToJoinToOtherLogTables * automatically add log tables up the hierarchy * code improvements * Adds new ExampleLogTables plugin giving a showcase for custom log tables * specifiy table name in userid archiver to fix query if custom log table joins on user_id column * fix tests * Adds log table that does only indirectly join with log_visit * Allow defining joins on visit and action * update ui files
Diffstat (limited to 'plugins/UserId')
-rw-r--r--plugins/UserId/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserId/Archiver.php b/plugins/UserId/Archiver.php
index 28c32bf3c6..584f364d3c 100644
--- a/plugins/UserId/Archiver.php
+++ b/plugins/UserId/Archiver.php
@@ -80,7 +80,7 @@ class Archiver extends \Piwik\Plugin\Archiver
/** @var \Zend_Db_Statement $query */
$query = $this->getLogAggregator()->queryVisitsByDimension(
array(self::USER_ID_FIELD),
- "$userIdFieldName IS NOT NULL AND $userIdFieldName != ''",
+ "log_visit.$userIdFieldName IS NOT NULL AND log_visit.$userIdFieldName != ''",
array("LOWER(HEX($visitorIdFieldName)) as $visitorIdFieldName")
);