~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-security

« back to all changes in this revision

Viewing changes to mysql-test/r/create.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2017-01-19 00:46:44 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20170119004644-10pdw25jrlc1lq1a
Tags: 5.5.54-1ubuntu0.14.04.1
* SECURITY UPDATE: New upstream release 5.5.54. Includes fixes for the
  following security vulnerabilities (LP: #1657594):
  - CVE-2017-3318
  - CVE-2017-3317
  - CVE-2017-3312
  - CVE-2017-3291
  - CVE-2017-3265
  - CVE-2017-3258
  - CVE-2017-3244
  - CVE-2017-3243
  - CVE-2017-3238
  - CVE-2016-6664

Show diffs side-by-side

added added

removed removed

Lines of Context:
2498
2498
create table t1 as select f1();
2499
2499
ERROR 42S02: Table 'test.t1' doesn't exist
2500
2500
drop function f1;
 
2501
#
 
2502
# MDEV-10274 Bundling insert with create statement
 
2503
#  for table with unsigned Decimal primary key issues warning 1194
 
2504
#
 
2505
create table t1(ID decimal(2,1) unsigned NOT NULL, PRIMARY KEY (ID))engine=memory
 
2506
select  2.1 ID;
 
2507
drop table t1;
2501
2508
End of 5.5 tests