Prado\Data\Common\Mysql\TMysqlMetaData::createNewTableInfo PHP Метод

createNewTableInfo() защищенный Метод

protected createNewTableInfo ( $table ) : TMysqlTableInfo
Результат TMysqlTableInfo
    protected function createNewTableInfo($table)
    {
        list($schemaName, $tableName) = $this->getSchemaTableName($table);
        $info['SchemaName'] = $schemaName;
        $info['TableName'] = $tableName;
        if ($this->getIsView($schemaName, $tableName)) {
            $info['IsView'] = true;
        }
        list($primary, $foreign) = $this->getConstraintKeys($schemaName, $tableName);
        $class = $this->getTableInfoClass();
        return new $class($info, $primary, $foreign);
    }