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:
authorMatthieu Aubry <mattab@users.noreply.github.com>2016-09-27 04:35:02 +0300
committerGitHub <noreply@github.com>2016-09-27 04:35:02 +0300
commitb073766826fac25c8f3558c3d66a5741bdceb91a (patch)
tree7fbe369d840b4d1d6ee7c6941ce82bfdd2aea650 /tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php
parent60ab0f1cc3ecbc1f78bd90c2551cb9adba5d73bb (diff)
do not make log_action.idaction (and foreign keys) BIGINT to prevent large overhead (#10569)
Partial revert https://github.com/piwik/piwik/pull/10548/files
Diffstat (limited to 'tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php')
-rw-r--r--tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php b/tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php
index 026c7719a1..956a85d7a2 100644
--- a/tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php
+++ b/tests/PHPUnit/System/SimulateAutoIncrementIntegerOverflowTest.php
@@ -40,7 +40,6 @@ class SimulateAutoIncrementIntegerOverflowTest extends SystemTestCase
{
$fieldsThatShouldNotOverflow = array(
'log_visit' => 'idvisit',
- 'log_action' => 'idaction',
'log_link_visit_action' => 'idlink_va'
);
$this->assertGreaterThan(4294967294, self::$fixture->maxUnsignedIntegerValue);