summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/upgrade.result
blob: 5393a3543dc397aa05ae9a68e23c8d0880ca2429 (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
30
31
32
33
34
check table vcol_autoinc for upgrade;
Table	Op	Msg_type	Msg_text
test.vcol_autoinc	check	Warning	Function or expression 'AUTO_INCREMENT' cannot be used in the GENERATED ALWAYS AS clause of `pk`
test.vcol_autoinc	check	status	OK
show create table vcol_autoinc;
Table	Create Table
vcol_autoinc	CREATE TABLE `vcol_autoinc` (
  `pk` int(11) NOT NULL AUTO_INCREMENT,
  `v3` int(11) GENERATED ALWAYS AS (`pk`) STORED,
  PRIMARY KEY (`pk`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
select * from vcol_autoinc;
pk	v3
insert vcol_autoinc (pk) values (1);
select * from vcol_autoinc;
pk	v3
1	1
drop table vcol_autoinc;
check table t1  for upgrade;
Table	Op	Msg_type	Msg_text
test.t1	check	status	OK
flush tables;
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `Date` datetime(6) NOT NULL,
  `Data` varbinary(2000) NOT NULL,
  `a` varchar(100) GENERATED ALWAYS AS (column_get(`Data`,1 as char(100) charset latin1)) VIRTUAL,
  PRIMARY KEY (`Date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
 PARTITION BY RANGE (to_days(`Date`))
(PARTITION `p20181029` VALUES LESS THAN (737361) ENGINE = MyISAM,
 PARTITION `p20181128` VALUES LESS THAN (737391) ENGINE = MyISAM)
drop table t1;