summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sql_sequence/view.result
blob: bd773dcc042e50f16b635476c3ae8d38b8242437 (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
create sequence s1;
create view v1 as select * from s1;
create view v2 as select next value for s1;
select * from v1;
next_not_cached_value	minimum_value	maximum_value	start_value	increment	cache_size	cycle_option	cycle_count
1	1	9223372036854775806	1	1	1000	0	0
select * from v2;
next value for s1
1
select * from v2;
next value for s1
2
select next value for v1;
ERROR 42S02: 'test.v1' is not a SEQUENCE
drop sequence s1;
drop view v1,v2;
#
# MDEV 13020 Server crashes in Item_func_nextval::val_int upon
# selecting NEXT or PREVIOUS VALUE for a view
#
CREATE OR REPLACE VIEW v1 AS SELECT 1 AS f;
SELECT NEXT VALUE FOR v1;
ERROR 42S02: 'test.v1' is not a SEQUENCE
SELECT PREVIOUS VALUE FOR v1;
ERROR 42S02: 'test.v1' is not a SEQUENCE
drop view v1;