1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-24 14:48:09 +03:00
Files
mariadb/mysql-test/suite/sql_sequence
Yuchen Pei 374783c3d9 MDEV-28152 Features for sequences
- Add `as <int_type>` to sequence creation options
  - int_type can be signed or unsigned integer types, including
    tinyint, smallint, mediumint, int and bigint
  - Limitation: when alter sequence as <new_int_type>, cannot have any
    other alter options in the same statement
  - Limitation: increment remains signed longlong, and the hidden
    constraint (cache_size x abs(increment) < longlong_max) stays for
    unsigned types. This means for bigint unsigned, neither
    abs(increment) nor (cache_size x abs(increment)) can be between
    longlong_max and ulonglong_max
- Truncating maxvalue and minvalue from user input to the nearest max
  or min value of the type, plus or minus 1. When the truncation
  happens, a warning is emitted
- Information schema table for sequences
2024-02-21 11:19:27 +11:00
..
2024-02-21 11:19:27 +11:00
2024-02-21 11:19:27 +11:00
2022-03-11 09:26:42 +02:00
2024-02-21 11:19:27 +11:00
2022-10-25 11:26:37 +03:00
2022-10-04 13:32:38 +02:00
2023-08-05 20:34:09 +02:00
2024-02-21 11:19:27 +11:00
2024-02-21 11:19:27 +11:00
2023-11-08 12:59:00 +01:00
2023-11-08 12:59:00 +01:00
2024-02-21 11:19:27 +11:00