Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 17.2.0

## Features

* Include `entity_id` in category entity varchar SQL query

# Version 17.0.0

### PHP 8.1 Compatibility
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/SqlStatementRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class SqlStatementRepository extends \TechDivision\Import\Repositories\SqlStatem
AND is_anchor_default.store_id = 0
AND is_anchor_default.row_id = t0.row_id',
SqlStatementKeys::CATEGORY_VARCHARS_BY_ENTITY_IDS =>
'SELECT t1.*
'SELECT t1.*, t0.entity_id
FROM ${table:catalog_category_entity} AS t0
INNER JOIN ${table:catalog_category_entity_varchar} AS t1
ON t1.row_id = t0.row_id
Expand Down
Loading