forked from Hevelop/magento2-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Patch-module-ee-mageworx-optionbase-optimize-write-endpoint.patch
32 lines (28 loc) · 1.56 KB
/
Patch-module-ee-mageworx-optionbase-optimize-write-endpoint.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Index: Model/CollectionUpdater/Option/Title.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Model/CollectionUpdater/Option/Title.php (date 1557837229000)
+++ Model/CollectionUpdater/Option/Title.php (date 1557837262000)
@@ -70,7 +70,7 @@
$entityType = $conditions['entity_type'];
$tableName = $this->getTableName($entityType);
- $this->resource->getConnection()->query('SET SESSION group_concat_max_len = 100000;');
+ //$this->resource->getConnection()->query('SET SESSION group_concat_max_len = 100000;');
$selectExpr = "SELECT " . OptionTitle::FIELD_OPTION_ID . " as "
. OptionTitle::FIELD_OPTION_ID_ALIAS . ","
Index: Model/CollectionUpdater/Value/Title.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Model/CollectionUpdater/Value/Title.php (date 1557837229000)
+++ Model/CollectionUpdater/Value/Title.php (date 1557837262000)
@@ -70,7 +70,7 @@
$entityType = $conditions['entity_type'];
$tableName = $this->getTableName($entityType);
- $this->resource->getConnection()->query('SET SESSION group_concat_max_len = 100000;');
+ //$this->resource->getConnection()->query('SET SESSION group_concat_max_len = 100000;');
$selectExpr = "SELECT " . OptionTypeTitle::FIELD_OPTION_TYPE_ID . " as "
. OptionTypeTitle::FIELD_OPTION_TYPE_ID_ALIAS . ","