Describe the bug
Cannot use UUID based tables because of createNativeQuery in CollectionFinder.php
To Reproduce
Steps to reproduce the behavior:
Just use a UUID as primary key in an index
Just use quotes in createNativeQuery to make it work
$query = $this->em->createNativeQuery('SELECT * FROM '.$tableName.' WHERE '.$primaryKeyInfos['entityAttribute'].' IN ("'.implode('", "', $ids).'") ORDER BY FIELD(id,"'.implode('", "', $ids).'")', $rsm);