forked from Hevelop/magento2-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Patch-module-ee-mageworx-optionfeatures-optimize-write-endpoint.patch
48 lines (42 loc) · 2.24 KB
/
Patch-module-ee-mageworx-optionfeatures-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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Index: Model/CollectionUpdater/Option/Description.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Model/CollectionUpdater/Option/Description.php (date 1557837357000)
+++ Model/CollectionUpdater/Option/Description.php (date 1557837399000)
@@ -71,7 +71,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 mageworx_option_id,"
. " CONCAT('[',"
Index: Model/CollectionUpdater/Value/Description.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Model/CollectionUpdater/Value/Description.php (date 1557837357000)
+++ Model/CollectionUpdater/Value/Description.php (date 1557837399000)
@@ -71,7 +71,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 mageworx_option_type_id,"
. " CONCAT('[',"
Index: Model/CollectionUpdater/Value/Images.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Model/CollectionUpdater/Value/Images.php (date 1557837357000)
+++ Model/CollectionUpdater/Value/Images.php (date 1557837399000)
@@ -66,7 +66,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;');
$selectImagesExpr = "SELECT mageworx_option_type_id,";
$selectImagesExpr .= " concat('[',";