You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on postgres and am writing a select that converts an integer field to varchar, so I can compare using "like". The 2.x branch misquotes the cast structure's datatype.
<?php$select = $this->queryFactory->newSelect();
$select->cols(['street_number'])
->from('addresses')
->where('cast(street_number as varchar) like ?', '10%');
return$select->getStatement();
SELECT
street_number
FROM"addresses"WHERE
cast(street_number AS"varchar) like :_1_"
The text was updated successfully, but these errors were encountered:
I'm doing a getStatement and regexing the fix out of the final query for now, as fixing this is not a small thing
Probably need to change the strripos check to be smarter( regex?) or change the CAST to be a pgsql specific builder
@auroraeosrose as you mentioned this recently, does this have the same problem for the PR #142 . Or does this resolve the issue ? If possible could you do a test on that branch ? There were some requests for releasing 3.x and I was just looking into the issues and PR's.
I'm on postgres and am writing a select that converts an integer field to varchar, so I can compare using "like". The 2.x branch misquotes the cast structure's datatype.
The text was updated successfully, but these errors were encountered: