Commit 43a2257d authored by unknown's avatar unknown

Manual merge of 5.1.5 build changes into the general tree.


sql/log_event.cc:
  Auto merged
sql/log_event.h:
  Auto merged
sql/sql_class.cc:
  Manual merge (one of the changes was incomplete).
parents 0d0d68ab 633d3592
...@@ -6171,7 +6171,7 @@ char const *Write_rows_log_event::do_prepare_row(THD *thd, TABLE *table, ...@@ -6171,7 +6171,7 @@ char const *Write_rows_log_event::do_prepare_row(THD *thd, TABLE *table,
*/ */
DBUG_ASSERT(table->s->fields >= m_width); DBUG_ASSERT(table->s->fields >= m_width);
DBUG_ASSERT(ptr); DBUG_ASSERT(ptr);
ptr= unpack_row(table, table->record[0], ptr, &m_cols); ptr= unpack_row(table, (char*)table->record[0], ptr, &m_cols);
return ptr; return ptr;
} }
......
...@@ -1784,7 +1784,7 @@ public: ...@@ -1784,7 +1784,7 @@ public:
/* Special constants representing sets of flags */ /* Special constants representing sets of flags */
enum enum
{ {
NO_FLAGS = 0U RLE_NO_FLAGS = 0U
}; };
virtual ~Rows_log_event(); virtual ~Rows_log_event();
......
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