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:
Carsten Brandt
2015-05-28 17:55:53 +02:00
parent 95ba06c01b
commit aa5887fec7
4 changed files with 132 additions and 7 deletions

View File

@@ -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.

View File

@@ -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.