mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Fixed sequences based on comments from Peter Gulutzan and Andrii Nikitin
- Changed names of SEQUENCE table columns to be more close to ANSI - Fixed error message for SHOW SEQUENCE non_existing_sequence - Allow syntax CACHE +1 - Fixed ALTER TABLE for TEMPORARY sequences.
This commit is contained in:
@ -43,7 +43,7 @@ select * from t1;
|
||||
select next value for t1;
|
||||
select next value for t1;
|
||||
select next value for t1;
|
||||
select next_value, round from t1;
|
||||
select next_not_cached_value, cycle_count from t1;
|
||||
drop sequence t1;
|
||||
|
||||
CREATE SEQUENCE t1 maxvalue=100 engine=myisam;
|
||||
|
Reference in New Issue
Block a user