Commit fb299e92 by Qiang Xue

Merge pull request #4207 from miramir/patch-1

Asterisk in Oracle not need quote
parents 3405f8e8 b96e45fa
...@@ -65,7 +65,7 @@ class Schema extends \yii\db\Schema ...@@ -65,7 +65,7 @@ class Schema extends \yii\db\Schema
*/ */
public function quoteSimpleColumnName($name) public function quoteSimpleColumnName($name)
{ {
return '"' . $name . '"'; return $name !== '*' ? '"' . $name . '"' : $name;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment