91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL的非葉子節點指針是什么

發布時間:2021-09-13 16:25:25 來源:億速云 閱讀:157 作者:柒染 欄目:MySQL數據庫

本篇文章為大家展示了MySQL的非葉子節點指針是什么,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

這個指針為8字節:4(唯一定位字段個數)+4(page no)。函數為dict_index_build_node_ptr。僅此記錄,后續研究

/**********************************************************************//**
Builds a node pointer out of a physical record and a page number.
@return own: node pointer */
dtuple_t*
dict_index_build_node_ptr(
/*======================*/
    const dict_index_t*    index,    /*!< in: index */
    const rec_t*        rec,    /*!< in: record for which to build node
                    pointer */
    ulint            page_no,/*!< in: page number to put in node
                    pointer */
    mem_heap_t*        heap,    /*!< in: memory heap where pointer
                    created */
    ulint            level)    /*!< in: level of rec in tree:
                    0 means leaf level */
{
    dtuple_t*    tuple;
    dfield_t*    field;
    byte*        buf;
    ulint        n_unique;
    if (dict_index_is_ibuf(index)) {
        /* In a universal index tree, we take the whole record as
        the node pointer if the record is on the leaf level,
        on non-leaf levels we remove the last field, which
        contains the page number of the child page */
        ut_a(!dict_table_is_comp(index->table));
        n_unique = rec_get_n_fields_old(rec);
        if (level > 0) {
            ut_a(n_unique > 1);
            n_unique--;
        }
    } else {
        n_unique = dict_index_get_n_unique_in_tree_nonleaf(index);// 唯一定位 到葉子節點的字段個數
    }
    tuple = dtuple_create(heap, n_unique + 1); //建立元組 
    /* When searching in the tree for the node pointer, we must not do
    comparison on the last field, the page number field, as on upper
    levels in the tree there may be identical node pointers with a
    different page number; therefore, we set the n_fields_cmp to one
    less: */
    dtuple_set_n_fields_cmp(tuple, n_unique); //比較字段為 數據域
    dict_index_copy_types(tuple, index, n_unique);  //進行類型復制
    buf = static_cast<byte*>(mem_heap_alloc(heap, 4)); //分配內存
    mach_write_to_4(buf, page_no);//寫入 葉子節點page no
    field = dtuple_get_nth_field(tuple, n_unique);  //字段個數  能夠唯一定位的字段個數
    dfield_set_data(field, buf, 4);//寫入字段個數
    dtype_set(dfield_get_type(field), DATA_SYS_CHILD, DATA_NOT_NULL, 4);
    rec_copy_prefix_to_dtuple(tuple, rec, index, n_unique, heap); //復制數據
    dtuple_set_info_bits(tuple, dtuple_get_info_bits(tuple)
                 | REC_STATUS_NODE_PTR);
    ut_ad(dtuple_check_typed(tuple));
    return(tuple);
}

上述內容就是MySQL的非葉子節點指針是什么,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

从化市| 德化县| 三门县| 拜城县| 大同市| 尚志市| 山西省| 阿克| 瓮安县| 大姚县| 仪陇县| 嵊泗县| 唐海县| 广汉市| 唐山市| 射洪县| 芒康县| 绩溪县| 东乡族自治县| 丽江市| 巴彦淖尔市| 天峻县| 大庆市| 晋宁县| 瑞丽市| 清河县| 延庆县| 原平市| 集安市| 华容县| 阳新县| 南召县| 宿州市| 巴林左旗| 广平县| 涿州市| 西和县| 改则县| 清丰县| 章丘市| 霸州市|