summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/instant_alter_extend,utf8.rdiff
blob: 596dfe43ab8a024a57ea22f397db15c9619cf7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- instant_alter_convert.result
+++ instant_alter_convert,utf8.result
@@ -37,7 +37,7 @@
 test.t	check	status	OK
 call check_table('t');
 name	mtype	prtype	len
-a	2	800FE	200
+a	13	2100FE	600
 # CHAR enlargement
 alter table t modify a char(220), algorithm=instant;
 select count(a) from t where a = @bigval;
@@ -51,7 +51,7 @@
 test.t	check	status	OK
 call check_table('t');
 name	mtype	prtype	len
-a	2	800FE	220
+a	13	2100FE	660
 # Convert from VARCHAR to a bigger CHAR
 alter table t modify a varchar(200), algorithm=instant;
 ERROR 0A000: ALGORITHM=INSTANT is not supported. Reason: Cannot change column type. Try ALGORITHM=COPY
@@ -72,7 +72,7 @@
 test.t	check	status	OK
 call check_table('t');
 name	mtype	prtype	len
-a	2	800FE	255
+a	13	2100FE	765
 # BINARY/VARBINARY test
 create or replace table t (a varbinary(300));
 alter table t modify a binary(255), algorithm=instant;