We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90d12c commit 95cc96dCopy full SHA for 95cc96d
app/code/Magento/ImportExport/Model/Export.php
@@ -232,6 +232,9 @@ public static function getAttributeFilterType(\Magento\Eav\Model\Entity\Attribut
232
*/
233
public static function getStaticAttributeFilterType(\Magento\Eav\Model\Entity\Attribute $attribute)
234
{
235
+ if ($attribute->getAttributeCode() == 'category_ids') {
236
+ return self::FILTER_TYPE_INPUT;
237
+ }
238
$columns = $attribute->getFlatColumns();
239
switch ($columns[$attribute->getAttributeCode()]['type']) {
240
case \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER:
0 commit comments