From 448374a228aee3cd867d89f1a1eae9884f5bf434 Mon Sep 17 00:00:00 2001 From: Aleksey Midenkov Date: Thu, 15 Jun 2017 16:02:32 +0300 Subject: SQL, IB: (0.10) VTMD tracking [closes #124] IB: Fixes in logic when to do versioned or usual row updates. Now it is able to do unversioned updates for versioned tables just by disabling `TABLE_SHARE::versioned` flag. SQL: DDL tracking for: * RENAME TABLE, ALTER TABLE .. RENAME TO; * DROP TABLE; * data-modifying operations (f.ex. ALTER TABLE .. ADD/DROP COLUMN). --- sql/sql_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql/sql_error.h') diff --git a/sql/sql_error.h b/sql/sql_error.h index bbe97333210..0d8aa48a11a 100644 --- a/sql/sql_error.h +++ b/sql/sql_error.h @@ -1171,7 +1171,7 @@ public: void copy_non_errors_from_wi(THD *thd, const Warning_info *src_wi); -private: +protected: Warning_info *get_warning_info() { return m_wi_stack.front(); } const Warning_info *get_warning_info() const { return m_wi_stack.front(); } -- cgit v1.2.1