Commit 87c5e84f authored by unknown's avatar unknown
Browse files

Bug #25275 SINGLE USER MODE prevents ALTER on non-ndb tables for other mysqld nodes

(part 1)
- add signal data
- add ref in dict on create/drop table/index

parent 1301de42
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -130,7 +130,8 @@ public:
    NullablePrimaryKey = 740,
    UnsupportedChange = 741,
    BackupInProgress = 762,
    IncompatibleVersions = 763
    IncompatibleVersions = 763,
    SingleUser = 299
  };

private:
+2 −1
Original line number Diff line number Diff line
@@ -206,7 +206,8 @@ public:
    NotUnique = 4251,
    AllocationError = 4252,
    CreateIndexTableFailed = 4253,
    DuplicateAttributes = 4258
    DuplicateAttributes = 4258,
    SingleUser = 299
  };

  CreateIndxConf m_conf;
+2 −1
Original line number Diff line number Diff line
@@ -91,7 +91,8 @@ public:
    RecordTooBig = 738,
    InvalidPrimaryKeySize  = 739,
    NullablePrimaryKey = 740,
    InvalidCharset = 743
    InvalidCharset = 743,
    SingleUser = 299
  };

private:
+2 −1
Original line number Diff line number Diff line
@@ -172,7 +172,8 @@ public:
    IndexNotFound = 4243,
    BadRequestType = 4247,
    InvalidName = 4248,
    NotAnIndex = 4254
    NotAnIndex = 4254,
    SingleUser = 299
  };
  STATIC_CONST( SignalLength = DropIndxConf::SignalLength + 3 );

+2 −1
Original line number Diff line number Diff line
@@ -58,7 +58,8 @@ public:
    InvalidTableVersion = 241,
    DropInProgress      = 283,
    NoDropTableRecordAvailable = 1229,
    BackupInProgress = 761
    BackupInProgress = 761,
    SingleUser = 299
  };
};

Loading