Commit b2b93f0a authored by ingo@mysql.com's avatar ingo@mysql.com

After merge fix.

parent 4368e995
...@@ -1765,7 +1765,7 @@ Variable_name Value ...@@ -1765,7 +1765,7 @@ Variable_name Value
Innodb_rows_deleted 2070 Innodb_rows_deleted 2070
show status like "Innodb_rows_inserted"; show status like "Innodb_rows_inserted";
Variable_name Value Variable_name Value
Innodb_rows_inserted 31718 Innodb_rows_inserted 31722
show status like "Innodb_rows_updated"; show status like "Innodb_rows_updated";
Variable_name Value Variable_name Value
Innodb_rows_updated 29530 Innodb_rows_updated 29530
......
...@@ -345,6 +345,7 @@ c1 c2 ...@@ -345,6 +345,7 @@ c1 c2
2 Test String 2 Test String
3 3
Test String Test String
drop table t1;
create table t1 (a varchar(10), b varchar(10), key(a(10),b(10))); create table t1 (a varchar(10), b varchar(10), key(a(10),b(10)));
show create table t1; show create table t1;
Table Create Table Table Create Table
......
...@@ -340,6 +340,9 @@ insert into t1 values (2,' \t\tTest String'); ...@@ -340,6 +340,9 @@ insert into t1 values (2,' \t\tTest String');
insert into t1 values (3,' \n\tTest String'); insert into t1 values (3,' \n\tTest String');
update t1 set c2 = 'New Test String' where c1 = 1; update t1 set c2 = 'New Test String' where c1 = 1;
select * from t1; select * from t1;
drop table t1;
#
# If we use a partial field for a key that is actually the length of the # If we use a partial field for a key that is actually the length of the
# field, and we extend the field, we end up with a key that includes the # field, and we extend the field, we end up with a key that includes the
# whole new length of the field. # whole new length of the field.
......
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