Connection类的parseSqlTable方法移动到Query类

This commit is contained in:
thinkphp
2016-06-01 12:42:51 +08:00
parent 4d00aa539f
commit c6595f23aa
3 changed files with 25 additions and 22 deletions

View File

@@ -66,7 +66,7 @@ abstract class Builder
*/
protected function parseSqlTable($sql)
{
return $this->connection->parseSqlTable($sql);
return $this->query->parseSqlTable($sql);
}
/**