|
|
@@ -1415,7 +1415,7 @@ class Query implements ExpressionInterface, IteratorAggregate
|
|
|
{
|
|
|
$this->_dirty();
|
|
|
$this->_type = 'delete';
|
|
|
- if ($table) {
|
|
|
+ if ($table !== null) {
|
|
|
$this->from($table);
|
|
|
}
|
|
|
return $this;
|
|
|
@@ -1758,7 +1758,6 @@ class Query implements ExpressionInterface, IteratorAggregate
|
|
|
protected function _dirty()
|
|
|
{
|
|
|
$this->_dirty = true;
|
|
|
- $this->_transformedQuery = null;
|
|
|
|
|
|
if ($this->_iterator && $this->_valueBinder) {
|
|
|
$this->valueBinder()->reset();
|