mirror of
https://github.com/MariaDB/server.git
synced 2026-05-05 06:35:33 +02:00
MDEV-12854 Synchronize CREATE..SELECT data type and result set metadata data type for INT functions
This commit is contained in:
parent
d2fec340d2
commit
a8caa8e04a
33 changed files with 800 additions and 227 deletions
|
|
@ -200,3 +200,17 @@ select next value for t1;
|
|||
--error ER_BAD_FIELD_ERROR
|
||||
select next value for t1, min_value;
|
||||
drop sequence t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-12854 Synchronize CREATE..SELECT data type and result set metadata data type for INT functions
|
||||
--echo #
|
||||
|
||||
--enable_metadata
|
||||
--disable_ps_protocol
|
||||
CREATE SEQUENCE s1;
|
||||
SELECT
|
||||
NEXT VALUE FOR s1,
|
||||
PREVIOUS VALUE FOR s1;
|
||||
DROP SEQUENCE s1;
|
||||
--enable_ps_protocol
|
||||
--disable_metadata
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue