• marko's avatar
    branches/zip: Implement the configuration parameter and settable global · a9ae7311
    marko authored
    variable innodb_file_format.  Implement file format version stamping of
    *.ibd files and SYS_TABLES.TYPE.
    
    This change breaks introduces an incompatible change for for
    compressed tables.  We can do this, as we have not released yet.
    
    innodb-zip.test: Add tests for stricter KEY_BLOCK_SIZE and ROW_FORMAT
    checks.
    
    DICT_TF_COMPRESSED_MASK, DICT_TF_COMPRESSED_SHIFT: Replace with
    DICT_TF_ZSSIZE_MASK, DICT_TF_ZSSIZE_SHIFT.
    
    DICT_TF_FORMAT_MASK, DICT_TF_FORMAT_SHIFT, DICT_TF_FORMAT_51,
    DICT_TF_FORMAT_ZIP: File format version, stored in table->flags,
    in the .ibd file header, and in SYS_TABLES.TYPE.
    
    dict_create_sys_tables_tuple(): Write the table flags to SYS_TABLES.TYPE
    if the format is at least DICT_TF_FORMAT_ZIP.  For old formats
    (DICT_TF_FORMAT_51), write DICT_TABLE_ORDINARY as the table type.
    
    DB_TABLE_ZIP_NO_IBD: Remove the error code.  The error handling is done
    in ha_innodb.cc; as a failsafe measure, dict_build_table_def_step() will
    silently clear the compression and format flags instead of returning this
    error.
    
    dict_mem_table_create(): Assert that no extra bits are set in the flags.
    
    dict_sys_tables_get_zip_size(): Rename to dict_sys_tables_get_flags().
    Check all flag bits, and return ULINT_UNDEFINED if the combination is
    unsupported.
    
    dict_boot(): Document the SYS_TABLES columns N_COLS and TYPE.
    
    dict_table_get_format(), dict_table_set_format(),
    dict_table_flags_to_zip_size(): New accessors to table->flags.
    
    dtuple_convert_big_rec(): Introduce the auxiliary variables
    local_len, local_prefix_len.  Store a 768-byte prefix locally
    if the file format is less than DICT_TF_FORMAT_ZIP.
    
    dtuple_convert_back_big_rec(): Restore the columns.
    
    srv_file_format: New variable: innodb_file_format.
    
    fil_create_new_single_table_tablespace(): Replace the parameter zip_size
    with table->flags.
    
    fil_open_single_table_tablespace(): Replace the parameter zip_size_in_k
    with table->flags.  Check the flags.
    
    fil_space_struct, fil_space_create(), fil_op_write_log():
    Replace zip_size with flags.
    
    fil_node_open_file(): Note a TODO item for InnoDB Hot Backup.
    Check that the tablespace flags match.
    
    fil_space_get_zip_size(): Rename to fil_space_get_flags().  Add a
    wrapper for fil_space_get_zip_size().
    
    fsp_header_get_flags(): New function.
    
    fsp_header_init_fields(): Replace zip_size with flags.
    
    FSP_SPACE_FLAGS: New name for the tablespace flags.  This field used
    to be called FSP_PAGE_ZIP_SIZE, or FSP_LOWEST_NO_WRITE.  It has always
    been written as 0 in MySQL/InnoDB versions 4.1 to 5.1.
    
    MLOG_ZIP_FILE_CREATE: Rename to MLOG_FILE_CREATE2.  Add a 32-bit
    parameter for the tablespace flags.
    
    ha_innobase::create(): Check the table attributes ROW_FORMAT and
    KEY_BLOCK_SIZE.  Issue errors if they are inappropriate, or warnings
    if the inherited attributes (in ALTER TABLE) will be ignored.
    
    PAGE_ZIP_MIN_SIZE_SHIFT: New constant: the 2-logarithm of PAGE_ZIP_MIN_SIZE.
    a9ae7311
page0zip.ic 11.4 KB