REPLACE syntax was still using SET even though the way variables were set has changed

This commit is contained in:
Josh Sherman 2012-11-07 19:53:09 -05:00
parent a36d51bb1a
commit 6c7d48278c
2 changed files with 2 additions and 2 deletions

View file

@ -1077,7 +1077,7 @@ class Model extends Object
$sql .= ' DELAYED';
}
$sql .= ' INTO ' . $this->table . ' SET ';
$sql .= ' INTO ' . $this->table;
}
else
{

View file

@ -5153,7 +5153,7 @@ class Model extends Object
$sql .= ' DELAYED';
}
$sql .= ' INTO ' . $this->table . ' SET ';
$sql .= ' INTO ' . $this->table;
}
else
{