mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@ -483,6 +483,7 @@ enum chf_create_flags {
|
||||
#define HA_CREATE_TMP_ALTER 8U
|
||||
#define HA_LEX_CREATE_SEQUENCE 16U
|
||||
#define HA_VERSIONED_TABLE 32U
|
||||
#define HA_SKIP_KEY_SORT 64U
|
||||
|
||||
#define HA_MAX_REC_LENGTH 65535
|
||||
|
||||
@ -789,11 +790,16 @@ typedef bool Log_func(THD*, TABLE*, bool, const uchar*, const uchar*);
|
||||
*/
|
||||
#define ALTER_COLUMN_INDEX_LENGTH (1ULL << 60)
|
||||
|
||||
/**
|
||||
Indicate that index order might have been changed. Disables inplace algorithm
|
||||
by default (not for InnoDB).
|
||||
*/
|
||||
#define ALTER_INDEX_ORDER (1ULL << 61)
|
||||
|
||||
/**
|
||||
Means that the ignorability of an index is changed.
|
||||
*/
|
||||
#define ALTER_INDEX_IGNORABILITY (1ULL << 61)
|
||||
#define ALTER_INDEX_IGNORABILITY (1ULL << 62)
|
||||
|
||||
/*
|
||||
Flags set in partition_flags when altering partitions
|
||||
|
Reference in New Issue
Block a user