Project

General

Profile

Actions

Bug #80744

closed

Extbase\Persistence\Repository IN statement string values in custom queries does not has quotes

Added by Anonymous about 7 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Extbase
Start date:
2017-04-07
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

Steps to reproduce

  • Create a custom query with a IN statement
  • Example query on tt_content table
    $query->matching(
        $query->logicalAnd([
            $query->in(
                'CType', $CTypes // <- this string values does not has quotes
            ),
            $query->in(
                'pid', $pages
            )
        ])
    );
    

Possible workaround

if (TYPO3_branch === '8.7') {
    $CTypes = array_map(function($a) { return '"'.$a.'"';}, $CTypes);
}

Actions

Also available in: Atom PDF