Skip to content

Commit

Permalink
Removing binary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Enercido Alcantara committed Jan 19, 2018
1 parent 8319fa1 commit ee627e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Repository/SyncFailedItemStateRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function findByUuId($id){
$qb->select('item')
->from('NTISyncBundle:SyncFailedItemState', 'item')
->andWhere(
$qb->expr()->eq('binary(item.uuid)', $qb->expr()->literal($id))
$qb->expr()->eq('item.uuid', $qb->expr()->literal($id))
);

try {
Expand Down

0 comments on commit ee627e4

Please sign in to comment.