Netgen Tags Bundle is an eZ Platform bundle for taxonomy management and easier classification of content, providing more functionality for tagging content than ezkeyword field type included in eZ Platform kernel.
Currently keyword column is missing from select query in DoctrineDatabase.php, with this fix query is properly generated:
SELECT DISTINCT eztags.id, eztags.keyword
FROM `eztags`
LEFT JOIN `eztags_keyword`
ON ( `eztags_keyword`.`keyword_id` = `eztags`.`id` AND `eztags_keyword`.`status` = 1 )
WHERE ( `eztags`.`parent_id` = 0
AND `eztags`.`main_tag_id` = 0 )
ORDER BY `eztags`.`keyword` ASC
LIMIT 25 OFFSET 0;
Currently keyword column is missing from select query in
DoctrineDatabase.php
, with this fix query is properly generated: