Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3495632
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3495632
Commits
db9e7191
Commit
db9e7191
authored
8 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2011500
by daffie, Pancho: Deprecate RIGHT JOINs, because SQLite doesn't support them
parent
81e51d9f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/lib/Drupal/Core/Database/Query/SelectInterface.php
+6
-0
6 additions, 0 deletions
core/lib/Drupal/Core/Database/Query/SelectInterface.php
with
6 additions
and
0 deletions
core/lib/Drupal/Core/Database/Query/SelectInterface.php
+
6
−
0
View file @
db9e7191
...
@@ -340,6 +340,12 @@ public function leftJoin($table, $alias = NULL, $condition = NULL, $arguments =
...
@@ -340,6 +340,12 @@ public function leftJoin($table, $alias = NULL, $condition = NULL, $arguments =
* An array of arguments to replace into the $condition of this join.
* An array of arguments to replace into the $condition of this join.
* @return
* @return
* The unique alias that was assigned for this table.
* The unique alias that was assigned for this table.
*
* @deprecated as of Drupal 8.1.x, will be removed in Drupal 9.0.0. Instead,
* change the query to use leftJoin(). For instance:
* db_query('A')->rightJoin('B') is identical to
* db_query('B')->leftJoin('A'). This functionality has been deprecated
* because SQLite does not support it.
*/
*/
public
function
rightJoin
(
$table
,
$alias
=
NULL
,
$condition
=
NULL
,
$arguments
=
array
());
public
function
rightJoin
(
$table
,
$alias
=
NULL
,
$condition
=
NULL
,
$arguments
=
array
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment