Followup to r81657, you do need a space between the table name and the alias

This commit is contained in:
OverlordQ 2011-02-08 15:34:28 +00:00
parent b85a785c22
commit 295dbec295

View file

@ -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 );
}
}