Commit 358400a8 authored by unknown's avatar unknown

Replace FEDERATED_EQ with STRING_WITH_LEN("=")


sql/ha_federated.cc:
  After merge fix
parent b58c7551
...@@ -1844,7 +1844,7 @@ int ha_federated::update_row(const byte *old_data, byte *new_data) ...@@ -1844,7 +1844,7 @@ int ha_federated::update_row(const byte *old_data, byte *new_data)
if (bitmap_is_set(table->write_set, (*field)->field_index)) if (bitmap_is_set(table->write_set, (*field)->field_index))
{ {
update_string.append((*field)->field_name); update_string.append((*field)->field_name);
update_string.append(FEDERATED_EQ); update_string.append(STRING_WITH_LEN("="));
if ((*field)->is_null()) if ((*field)->is_null())
update_string.append(STRING_WITH_LEN(" NULL ")); update_string.append(STRING_WITH_LEN(" NULL "));
......
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