Convert all SQL keywords to upper case

대소문자를 섞어서 쓰고 있던 SQL 키워드들을 모두 대문자로 통일
as, and, or, like, desc 등이 소문자였음
This commit is contained in:
Kijin Sung 2018-06-30 15:42:52 +09:00
parent 6070707941
commit 83362034cd
6 changed files with 15 additions and 20 deletions

View file

@ -37,7 +37,7 @@ class OrderByColumn
{
$result = $this->getColumnName();
$result .= ' ';
$result .= is_a($this->sort_order, 'Argument') ? $this->sort_order->getValue() : $this->sort_order;
$result .= is_a($this->sort_order, 'Argument') ? $this->sort_order->getValue() : strtoupper($this->sort_order);
return $result;
}