Skip to content
Open
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
4 changes: 2 additions & 2 deletions lib/Plugins/Features/SegmentFilter/Model/SegmentFilterDao.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ public function getSqlForRepetition(array $where): string

{$where['sql']}

GROUP BY segment_hash, CONCAT( id_job, '-', password )
HAVING COUNT( segment_hash ) > 1
GROUP BY st.segment_hash, CONCAT( id_job, '-', password )
HAVING COUNT( st.segment_hash ) > 1
Comment on lines +292 to +293
) AS REPETITIONS ON REPETITIONS.hash = segment_translations.segment_hash AND FIND_IN_SET( id_segment, REPETITIONS.id )
GROUP BY id_segment
";
Expand Down
Loading