mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Merge branch 'bb-10.2-serg-merge' into 10.2
This commit is contained in:
commit
f3914d10b6
219 changed files with 11098 additions and 2926 deletions
|
|
@ -1759,6 +1759,15 @@ DELIMITER ;|
|
|||
create table t1 as select f1();
|
||||
drop function f1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-10274 Bundling insert with create statement
|
||||
--echo # for table with unsigned Decimal primary key issues warning 1194
|
||||
--echo #
|
||||
|
||||
create table t1(ID decimal(2,1) unsigned NOT NULL, PRIMARY KEY (ID))engine=memory
|
||||
select 2.1 ID;
|
||||
drop table t1;
|
||||
|
||||
--echo End of 5.5 tests
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue