Followup to r81657, you do need a space between the table name and the alias
This commit is contained in:
parent
b85a785c22
commit
295dbec295
1 changed files with 1 additions and 1 deletions
|
|
@ -1625,7 +1625,7 @@ abstract class DatabaseBase implements DatabaseType {
|
|||
if ( !$alias || $alias == $name ) {
|
||||
return $this->tableName( $name );
|
||||
} else {
|
||||
return $this->tableName( $name ) . $this->addQuotes( $alias );
|
||||
return $this->tableName( $name ) . ' ' . $this->addQuotes( $alias );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue