diff options
author | Robin Appelman <robin@icewind.nl> | 2022-04-22 13:31:34 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-04-22 13:42:33 +0200 |
commit | a4e120c2034bc1739d7428245660670b09aa7a75 (patch) | |
tree | 0b0f3b35e7303e3e0e426c2e5908a445663369ac /lib/public | |
parent | 9a76f06ecadf05ef1d26bd735df1bea0dfb15d59 (diff) | |
download | nextcloud-server-a4e120c2034bc1739d7428245660670b09aa7a75.tar.gz nextcloud-server-a4e120c2034bc1739d7428245660670b09aa7a75.zip |
tell mysql to ignore the sort index for search queries
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index afca9e372ee..e3257e82bca 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -834,7 +834,7 @@ interface IQueryBuilder { /** * Adds an ordering to the query results. * - * @param string $sort The ordering expression. + * @param string|ILiteral|IParameter|IQueryFunction $sort The ordering expression. * @param string $order The ordering direction. * * @return $this This QueryBuilder instance. |