yabhq / laravel-scout-mysql-driver

Laravel Scout MySQL Driver
MIT License
522 stars 113 forks source link

UTF8 problem #60

Closed hojabbr closed 6 years ago

hojabbr commented 6 years ago

can't do a search in Persian or Arabic

SQLSTATE[HY000]: General error: 1271 Illegal mix of collations for operation 'like' (SQL: select count(*) as aggregate fromitemswhere (idLIKE %سلام% ORtitleLIKE %سلام% ORintroLIKE %سلام% ORdescriptionLIKE %سلام% ORthumbnailLIKE %سلام% ORimagesLIKE %سلام% ORpriceLIKE %سلام% ORstatusLIKE %سلام% ORuser_idLIKE %سلام% ORcreated_atLIKE %سلام% ORupdated_atLIKE %سلام% ORdeleted_atLIKE %سلام% ORslugLIKE %سلام%) anditems.deleted_atis null)

hojabbr commented 6 years ago

Found the problem, the date fields are causing the problem so excluded them with a function within the Model:

    public function toSearchableArray()
    {
        return $this->only('id', 'title', 'intro', 'description');
    }