Commit c8e1c4ef authored by unknown's avatar unknown

WL#3915 : (NDB) master's cols > slave

Patch corrects minor test anomolies and build warnings.


mysql-test/extra/rpl_tests/rpl_extraMaster_Col.test:
  WL#3915 : (NDB) master's cols > slave
  
  Patch masks out the port number in the show slave status results.
mysql-test/r/rpl_extraColmaster_innodb.result:
  WL#3915 : (NDB) master's cols > slave
  
  New result file from changed test.
mysql-test/r/rpl_extraColmaster_myisam.result:
  WL#3915 : (NDB) master's cols > slave
  
  New result file from changed test.
mysql-test/r/rpl_row_extraColmaster_ndb.result:
  WL#3915 : (NDB) master's cols > slave
  
  New result file from changed test.
sql/field.cc:
  WL#3915 : (NDB) master's cols > slave
  
  Removed warning for unused parameter. Parameter was include for assertion
  and future changes to string class.
parent a6f3082a
...@@ -99,7 +99,7 @@ connection master; ...@@ -99,7 +99,7 @@ connection master;
#connection slave; #connection slave;
sync_slave_with_master; sync_slave_with_master;
--replace_column 1 # 7 # 8 # 9 # 22 # 23 # 33 # --replace_column 1 # 4 # 7 # 8 # 9 # 22 # 23 # 33 #
--query_vertical show slave status; --query_vertical show slave status;
select * from t1 order by f3; select * from t1 order by f3;
...@@ -373,7 +373,7 @@ connection master; ...@@ -373,7 +373,7 @@ connection master;
select * from t31; select * from t31;
--replace_result $MASTER_MYPORT MASTER_PORT --replace_result $MASTER_MYPORT MASTER_PORT
--replace_column 1 # 7 # 8 # 9 # 22 # 23 # 33 # --replace_column 1 # 4 # 7 # 8 # 9 # 22 # 23 # 33 #
--query_vertical show slave status; --query_vertical show slave status;
#### Clean Up #### #### Clean Up ####
......
...@@ -6404,7 +6404,8 @@ const char *Field_string::unpack(char *to, ...@@ -6404,7 +6404,8 @@ const char *Field_string::unpack(char *to,
{ {
uint from_len= param_data & 0x00ff; // length. uint from_len= param_data & 0x00ff; // length.
uint length= 0; uint length= 0;
uint f_length= (from_len < field_length) ? from_len : field_length; uint f_length;
f_length= (from_len < field_length) ? from_len : field_length;
DBUG_ASSERT(f_length <= 255); DBUG_ASSERT(f_length <= 255);
length= (uint) *from++; length= (uint) *from++;
bitmap_set_bit(table->write_set,field_index); bitmap_set_bit(table->write_set,field_index);
......
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