summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sql_sequence/other.result
blob: b9510d46de77ecf557e44a6c53eb90e4eeaa58a1 (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
35
36
37
38
39
40
41
42
#
# Create and check
#
create sequence s1 engine=innodb;
check table s1;
Table	Op	Msg_type	Msg_text
test.s1	check	note	The storage engine for the table doesn't support check
select next value for s1;
next value for s1
1
flush tables;
check table s1;
Table	Op	Msg_type	Msg_text
test.s1	check	note	The storage engine for the table doesn't support check
select next value for s1;
next value for s1
1001
flush tables;
repair table s1;
Table	Op	Msg_type	Msg_text
test.s1	repair	note	The storage engine for the table doesn't support repair
select next value for s1;
next value for s1
2001
drop sequence s1;
create or replace sequence s1 engine=innodb;
select next value for s1;
next value for s1
1
repair table s1;
Table	Op	Msg_type	Msg_text
test.s1	repair	note	The storage engine for the table doesn't support repair
check table s1;
Table	Op	Msg_type	Msg_text
test.s1	check	note	The storage engine for the table doesn't support check
select next value for s1;
next value for s1
1001
select * from s1;
next_value	min_value	max_value	start	increment	cache	cycle	round
2001	1	9223372036854775806	1	1	1000	0	0
drop sequence s1;