Commit 97728e10 authored by Sergei Golubchik's avatar Sergei Golubchik

comment

clarify Alter_inplace_info::ALTER_PARTITIONED
parent d821dd10
...@@ -1822,7 +1822,10 @@ public: ...@@ -1822,7 +1822,10 @@ public:
// Virtual columns changed // Virtual columns changed
static const HA_ALTER_FLAGS ALTER_COLUMN_VCOL = 1L << 30; static const HA_ALTER_FLAGS ALTER_COLUMN_VCOL = 1L << 30;
// ALTER TABLE for a partitioned table /**
ALTER TABLE for a partitioned table. The engine needs to commit
online alter of all partitions atomically (using group_commit_ctx)
*/
static const HA_ALTER_FLAGS ALTER_PARTITIONED = 1L << 31; static const HA_ALTER_FLAGS ALTER_PARTITIONED = 1L << 31;
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment