PMA\libraries\DatabaseInterface::getKillQuery PHP Метод

getKillQuery() публичный Метод

Gets SQL for killing a process.
public getKillQuery ( integer $process ) : string
$process integer Process ID
Результат string
    public function getKillQuery($process)
    {
        if ($this->isAmazonRds()) {
            return 'CALL mysql.rds_kill(' . $process . ');';
        } else {
            return 'KILL ' . $process . ';';
        }
    }