From b96e45faf703789313c857c4c7dd17ab5da83ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD=20=D0=91=D0=B0=D0=B3=D0=B0=D0=B5?= =?UTF-8?q?=D0=B2?= Date: Sat, 5 Jul 2014 22:07:46 +0600 Subject: [PATCH] Remove test for asterisk in quoteSimpleTableName --- framework/db/oci/Schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/oci/Schema.php b/framework/db/oci/Schema.php index ab8c5ace03..78e0c74074 100644 --- a/framework/db/oci/Schema.php +++ b/framework/db/oci/Schema.php @@ -57,7 +57,7 @@ class Schema extends \yii\db\Schema */ public function quoteSimpleTableName($name) { - return $name !== '*' ? '"' . $name . '"' : $name; + return '"' . $name . '"'; } /**