private function getCreateTable()
 {
     if ($this->createTable) {
         return $this->createTable;
     }
     $res = new SQL\ShowCreateTable($this->table);
     $createTable = $res->Execute()->Fetch(Fetch::NUM);
     $createTable = $createTable[1];
     $this->createTable = new SQL\Parse\CreateTable($createTable);
     return $this->createTable;
 }