修正两处错误

修正两处错误
This commit is contained in:
WeakSun
2016-08-10 14:44:44 +08:00
committed by GitHub
parent 159d6c3145
commit 237e3b40e7

View File

@@ -684,7 +684,7 @@ abstract class Builder
$this->parseWhere($options['where'], $options), $this->parseWhere($options['where'], $options),
$this->parseOrder($options['order']), $this->parseOrder($options['order']),
$this->parseLimit($options['limit']), $this->parseLimit($options['limit']),
$this->parseLimit($options['lock']), $this->parseLock($options['lock']),
$this->parseComment($options['comment']), $this->parseComment($options['comment']),
], $this->updateSql); ], $this->updateSql);
@@ -708,7 +708,7 @@ abstract class Builder
$this->parseWhere($options['where'], $options), $this->parseWhere($options['where'], $options),
$this->parseOrder($options['order']), $this->parseOrder($options['order']),
$this->parseLimit($options['limit']), $this->parseLimit($options['limit']),
$this->parseLimit($options['lock']), $this->parseLock($options['lock']),
$this->parseComment($options['comment']), $this->parseComment($options['comment']),
], $this->deleteSql); ], $this->deleteSql);