Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-04-22 14:31:34 +0300
committerRobin Appelman <robin@icewind.nl>2022-04-22 14:42:33 +0300
commita4e120c2034bc1739d7428245660670b09aa7a75 (patch)
tree0b0f3b35e7303e3e0e426c2e5908a445663369ac /lib/public
parent9a76f06ecadf05ef1d26bd735df1bea0dfb15d59 (diff)
tell mysql to ignore the sort index for search queriesmysql-search-ignore-index-2
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/DB/QueryBuilder/IQueryBuilder.php2
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.