mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-20 16:38:22 +08:00
added missing use statement to fix #8572
- added unit tests for timestamp behavior and insert with expression - fixed issue #8572 close #8596
This commit is contained in:
@@ -7,8 +7,9 @@
|
||||
|
||||
namespace yii\db\mysql;
|
||||
|
||||
use yii\db\Exception;
|
||||
use yii\base\InvalidParamException;
|
||||
use yii\db\Exception;
|
||||
use yii\db\Expression;
|
||||
|
||||
/**
|
||||
* QueryBuilder is the query builder for MySQL databases.
|
||||
|
||||
@@ -10,6 +10,7 @@ namespace yii\db\oci;
|
||||
use yii\base\InvalidParamException;
|
||||
use yii\db\Connection;
|
||||
use yii\db\Exception;
|
||||
use yii\db\Expression;
|
||||
|
||||
/**
|
||||
* QueryBuilder is the query builder for Oracle databases.
|
||||
|
||||
Reference in New Issue
Block a user