Fixed test break.

This commit is contained in:
Qiang Xue
2014-03-14 23:06:09 -04:00
parent 9ff8b0f903
commit 5a61ee91be

View File

@ -92,7 +92,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
}
return 'INSERT INTO ' . $this->db->quoteTableName($table)
. ' (' . implode(', ', $columns) . ') SELECT ' . implode(' UNION ALL ', $values);
. ' (' . implode(', ', $columns) . ') SELECT ' . implode(' UNION SELECT ', $values);
}
/**