From 9fb4374efae73a46c35d427e8a06fbb25e90dd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20Espi=C3=A9?= Date: Fri, 8 Jun 2018 12:58:29 +0000 Subject: [PATCH] =?UTF-8?q?N=C2=B01420=20-=20Performances=20enhancement=20?= =?UTF-8?q?(fix=20indexes=20generation)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SVN:trunk[5841] --- core/metamodel.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/metamodel.class.php b/core/metamodel.class.php index d2227e605..aee4a756d 100644 --- a/core/metamodel.class.php +++ b/core/metamodel.class.php @@ -5178,7 +5178,7 @@ abstract class MetaModel { $sIndexId = implode('_', $aColumns); - if (isset($aTableInfo['Indexes'][$sIndexId]) && $aTableInfo['Indexes'][$sIndexId]['used']) + if (isset($aTableInfo['Indexes'][$sIndexId]['used']) && $aTableInfo['Indexes'][$sIndexId]['used']) { continue; }