Details
Description
reported by @marxide:
https://mariadb.zulipchat.com/#narrow/stream/118759-general/topic/Alter.20sequence.20if.20exists
Actual results:
MariaDB [test]> ALTER SEQUENCE IF EXISTS no_exists MINVALUE 10;
|
ERROR 4091 (42S02): Unknown SEQUENCE: 'no_exists'
|
MariaDB [test]>
|
Expected results:
MariaDB [test]> ALTER SEQUENCE IF EXISTS no_exists MINVALUE 10;
|
Query OK, 0 rows affected, 1 warning (0.001 sec)
|
 |
MariaDB [test]> show warnings;
|
+-------+------+------------------------------------+
|
| Level | Code | Message |
|
+-------+------+------------------------------------+
|
| Note | 4091 | Unknown SEQUENCE: 'test.no_exists' |
|
+-------+------+----------------------------------
|
Attachments
Issue Links
- is caused by
-
MDEV-10139 Support for SEQUENCE objects
- Closed
-
MDEV-13005 Fixing bugs in SEQUENCE, part 3
- Closed