Project

General

Profile

Actions

Bug #88819

open

TYPO3\CMS\Core\Database\Query\QueryHelper::parseOrderBy() implementation is too naive

Added by Guillaume Crico over 4 years ago. Updated over 4 years ago.

Status:
New
Priority:
Should have
Assignee:
-
Category:
Database API (Doctrine DBAL)
Target version:
-
Start date:
2019-07-22
Due date:
% Done:

0%

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

Description

Example:

input:
String("ORDER BY FIND_IN_SET(uid, '1')")

current output:
Array(
[0] => Array
(
[0] => FIND_IN_SET(uid
[1] =>
)
[1] => Array
(
[0] => '1')
[1] =>
)
)
)

expected output:
Array(
[0] => Array
(
[0] => FIND_IN_SET(uid, '1')
[1] =>
)
)
)

Actions #1

Updated by Riccardo De Contardi over 4 years ago

  • Category set to Database API (Doctrine DBAL)
Actions

Also available in: Atom PDF