MySQL 8.3.0
Source Code Documentation
alter_part_change Class Reference

Class which handles the partition of the state PART_CHANGED. More...

Inheritance diagram for alter_part_change:
[legend]

Public Member Functions

 alter_part_change (uint part_id, partition_state state, const char *table_name, const char *tablespace, trx_t *trx, dict_table_t **old, const Alter_inplace_info *ha_alter_info, bool file_per_table, uint64_t autoinc)
 Constructor. More...
 
 ~alter_part_change () override=default
 Destructor. More...
 
int prepare (TABLE *altered_table, const dd::Partition *old_part, dd::Partition *new_part) override
 Prepare. More...
 
int try_commit (const TABLE *table, TABLE *altered_table, const dd::Partition *old_part, dd::Partition *new_part) override
 Try to commit. More...
 
void rollback () override
 Rollback. More...
 
- Public Member Functions inherited from alter_part
virtual ~alter_part ()=default
 Virtual destructor. More...
 
virtual uint part_id () const
 Return the partition id. More...
 
virtual partition_state state () const
 Return the partition state. More...
 
dict_table_tnew_table ()
 Get the InnoDB table object for newly created partition if applicable. More...
 
void free_old_part (bool check_in_cache, const char *part_name)
 Set the freed old partition to nullptr to avoid dangling pointer. More...
 

Private Attributes

const Alter_inplace_infom_ha_alter_info
 ALTER information. More...
 
const bool m_file_per_table
 Current value of innodb_file_per_table. More...
 
const uint64_t m_autoinc
 Next AUTOINC value to use. More...
 
char m_tablespace [FN_REFLEN+1]
 Tablespace of this partition. More...
 

Additional Inherited Members

- Protected Member Functions inherited from alter_part
 alter_part (trx_t *trx, uint part_id, partition_state state, const char *table_name, dict_table_t **old)
 Constructor. More...
 
bool build_partition_name (const dd::Partition *dd_part, bool temp, char *name)
 Build the partition name for specified partition. More...
 
int create (const dd::Table *part_table, const char *part_name, dd::Partition *dd_part, TABLE *table, const char *tablespace, bool file_per_table, uint64_t autoinc, uint64_t autoextend_size)
 Create a new partition. More...
 
- Protected Attributes inherited from alter_part
trx_t *const m_trx
 InnoDB transaction, nullptr if not used. More...
 
uint m_part_id
 Partition id in the table. More...
 
partition_state m_state
 Partition state of the partition on which this class will do operations. More...
 
const char * m_table_name
 Partitioned table name, in form of . More...
 
dict_table_t ** m_old
 The InnoDB table object for old partition. More...
 
dict_table_tm_new
 The InnoDB table object for newly created partition. More...
 

Detailed Description

Class which handles the partition of the state PART_CHANGED.

See comments for alter_part_factory::create_for_reorg and alter_part_factory::create_for_non_reorg.

Constructor & Destructor Documentation

◆ alter_part_change()

alter_part_change::alter_part_change ( uint  part_id,
partition_state  state,
const char *  table_name,
const char *  tablespace,
trx_t trx,
dict_table_t **  old,
const Alter_inplace_info ha_alter_info,
bool  file_per_table,
uint64_t  autoinc 
)
inline

Constructor.

Parameters
[in]part_idPartition id in the table. This could be partition id for either old table or new table, callers should remember which one is applicable
[in]statePartition state of the partition on which this class will do operations. If this is for one partition in new table, the partition state is the same for both the new partition and the corresponding old partition
[in]table_namePartitioned table name, in the form of db/table, which already considers the chraset
[in]tablespaceTablespace specified explicitly
[in,out]trxInnoDB transaction
[in,out]oldInnoDB table object for old partition, default is nullptr, which means there is no corresponding object
[in]ha_alter_infoALTER information
[in]file_per_tableCurrent value of innodb_file_per_table
[in]autoincNext AUTOINC value to use

◆ ~alter_part_change()

alter_part_change::~alter_part_change ( )
overridedefault

Destructor.

Member Function Documentation

◆ prepare()

int alter_part_change::prepare ( TABLE altered_table,
const dd::Partition old_part,
dd::Partition new_part 
)
overridevirtual

Prepare.

Parameters
[in,out]altered_tableTable definition after the ALTER
[in]old_partthe stored old partition or nullptr if no corresponding one exists
[in,out]new_partthe stored new partition or nullptr if no corresponding one exists
Returns
0 or error number

Reimplemented from alter_part.

◆ rollback()

void alter_part_change::rollback ( )
inlineoverridevirtual

Rollback.

Reimplemented from alter_part.

◆ try_commit()

int alter_part_change::try_commit ( const TABLE table,
TABLE altered_table,
const dd::Partition old_part,
dd::Partition new_part 
)
overridevirtual

Try to commit.

Parameters
[in]tableTable definition before the ALTER
[in,out]altered_tableTable definition after the ALTER
[in]old_partthe stored old partition or nullptr if no corresponding one exists
[in,out]new_partthe stored new partition or nullptr if no corresponding one exists
Returns
0 or error number

Reimplemented from alter_part.

Member Data Documentation

◆ m_autoinc

const uint64_t alter_part_change::m_autoinc
private

Next AUTOINC value to use.

◆ m_file_per_table

const bool alter_part_change::m_file_per_table
private

Current value of innodb_file_per_table.

◆ m_ha_alter_info

const Alter_inplace_info* alter_part_change::m_ha_alter_info
private

ALTER information.

◆ m_tablespace

char alter_part_change::m_tablespace[FN_REFLEN+1]
private

Tablespace of this partition.


The documentation for this class was generated from the following file: