1
0
mirror of synced 2024-12-05 03:06:05 +03:00

Swapped places indexBy and condition in accordance with EBNF

This commit is contained in:
Vladislav Vlastovskiy 2013-05-09 03:30:48 +04:00
parent c8bcdb4b61
commit 33888f1b08

View File

@ -139,7 +139,7 @@ class Join
{
return strtoupper($this->joinType) . ' JOIN ' . $this->join
. ($this->alias ? ' ' . $this->alias : '')
. ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : '')
. ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '');
. ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '')
. ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : '');
}
}