From f03cb20eac1fcdbf1e0ac3885126fefe67d7cc57 Mon Sep 17 00:00:00 2001 From: xjm Date: Mon, 13 Nov 2017 10:18:21 -0500 Subject: [PATCH] Issue #2921916 by spideep: Add Change record to @deprecated for function rightJoin --- core/lib/Drupal/Core/Database/Query/SelectInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php index 59b15d0790c1938..6a91e727997784e 100644 --- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php +++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php @@ -346,6 +346,8 @@ interface SelectInterface extends ConditionInterface, AlterableInterface, Extend * db_query('A')->rightJoin('B') is identical to * db_query('B')->leftJoin('A'). This functionality has been deprecated * because SQLite does not support it. + * + * @see https://www.drupal.org/node/2765249 */ public function rightJoin($table, $alias = NULL, $condition = NULL, $arguments = []);