Merge branch 'bb-10.2-serg-merge' into 10.2

This commit is contained in:
Sergei Golubchik 2017-02-11 09:45:34 +01:00
commit f3914d10b6
219 changed files with 11098 additions and 2926 deletions

View file

@ -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
#