Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4117304
JoinGroup.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
966 B
Referenced Files
None
Subscribers
None
JoinGroup.php
View Options
<?php
namespace
Wikimedia\Rdbms
;
/**
* Parenthesized group of table names and their join types and conditions.
*
* @internal
*/
class
JoinGroup
extends
JoinGroupBase
{
/** @var string */
private
$alias
;
/** @var int */
private
$nextAutoAlias
=
0
;
/**
* Use SelectQueryBuilder::newJoinGroup() to create a join group
*
* @internal
* @param string $alias
*/
public
function
__construct
(
$alias
)
{
$this
->
alias
=
$alias
;
}
/**
* Get a table alias which is unique to the parent SelectQueryBuilder
*
* @return string
*/
protected
function
getAutoAlias
()
{
return
$this
->
alias
.
'_'
.
(
$this
->
nextAutoAlias
++
);
}
/**
* @internal
* @return array
*/
public
function
getRawTables
()
{
return
$this
->
tables
;
}
/**
* @internal
* @return array
*/
public
function
getRawJoinConds
()
{
return
$this
->
joinConds
;
}
/**
* @internal
* @return string
*/
public
function
getAlias
()
{
return
$this
->
alias
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 02:07 (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
65/d4/8a787153b0928628f437b514e91c
Default Alt Text
JoinGroup.php (966 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment