Bug #78386
closedError in between Query.
0%
Description
//With this query I get never results.
$constraints[] = $query->logicalAnd(
$query->greaterThanOrEqual('events.dateFrom', $DateFromStartFormated),
$query->lessThanOrEqual('events.dateTo', $DateToStartFormated)
);
//With this query I get results.
$constraints[] = $query->logicalAnd(
$query->greaterThanOrEqual('events.dateFrom', $DateFromStartFormated)//,
//$query->lessThanOrEqual('events.dateTo', $DateToStartFormated)
);
Updated by Morton Jonuschat almost 8 years ago
- Status changed from New to Needs Feedback
I've tried to verify this and can't seem any failure in Extbase, can you provide an anonymized SQL dump of the rows it should find and the values for the input parameters $DateFromStartFormated and $DateToStartFormated?
Updated by Riccardo De Contardi over 7 years ago
- Status changed from Needs Feedback to Closed
No feedback since 90 days > close.
If you think that this is the wrong decision or experience the issue again or if you have more information about how to reproduce it, then please reopen it or open a new issue with a reference to this one. Thank you.