@ -1297,9 +1297,6 @@ class ActiveRecord extends Model
$column = $columns[$name];
if ($column->isMva) {
$value = explode(',', $value);
$value = array_map([$column, 'typecast'], $value);
} else {
$value = $column->typecast($value);
}
$record->_attributes[$name] = $value;
@ -124,6 +124,6 @@ class Connection extends \yii\db\Connection
*/
public function getLastInsertID($sequenceName = '')
{
throw new NotSupportedException('"' . $this->className() . '::getLastInsertID" is not supported.');
throw new NotSupportedException('"' . __METHOD__ . '" is not supported.');