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:
-rw-r--r--tests/PHPUnit/Integration/DataAccess/LogAggregatorTest.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/PHPUnit/Integration/DataAccess/LogAggregatorTest.php b/tests/PHPUnit/Integration/DataAccess/LogAggregatorTest.php
index 2cdf533cf0..62ee9e5419 100644
--- a/tests/PHPUnit/Integration/DataAccess/LogAggregatorTest.php
+++ b/tests/PHPUnit/Integration/DataAccess/LogAggregatorTest.php
@@ -19,6 +19,7 @@ use Piwik\Segment;
use Piwik\Site;
use Piwik\Tests\Fixtures\OneVisitorTwoVisits;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
+use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Updater\Migration\Db as DbMigration;
/**
@@ -147,6 +148,11 @@ class LogAggregatorTest extends IntegrationTestCase
public function testSetMaxExecutionTimeOfArchivingQueries()
{
+ if (SystemTestCase::isMysqli()) {
+ // See https://github.com/matomo-org/matomo/issues/17871
+ $this->markTestSkipped('Max execution query hint does not work for Mysqli.');
+ }
+
// limit query to one milli second
Config::getInstance()->General['archiving_query_max_execution_time'] = 0.001;
try {