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>2019-10-10 00:36:19 +0300
committerGitHub <noreply@github.com>2019-10-10 00:36:19 +0300
commit42f9f8cbcc350f9cbcd8a085c38f2ae9155c42d3 (patch)
treea9ddfc6e8a98eea2d92dcd03e34c284ecbd37a27 /plugins/Events
parente5b034d46ff3a793837944c4f6445c694007ce5f (diff)
Smaller varchar size for log_action.name (#14859)
Diffstat (limited to 'plugins/Events')
-rw-r--r--plugins/Events/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Events/Archiver.php b/plugins/Events/Archiver.php
index b87ff8543a..21d1eaae92 100644
--- a/plugins/Events/Archiver.php
+++ b/plugins/Events/Archiver.php
@@ -174,7 +174,7 @@ class Archiver extends \Piwik\Plugin\Archiver
log_link_visit_action.idaction_event_action,
log_link_visit_action.idaction_name";
- $orderBy = "`" . Metrics::INDEX_NB_VISITS . "` DESC";
+ $orderBy = "`" . Metrics::INDEX_NB_VISITS . "` DESC, `eventName`";
$rankingQueryLimit = ArchivingHelper::getRankingQueryLimit();
$rankingQuery = null;