~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-updates

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_tmp_table_and_DDL.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2015-06-13 21:09:48 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150613210948-tkboqdfc3y9ifptl
Tags: 5.5.44-1ubuntu0.14.10.1
* SECURITY UPDATE: Update to 5.5.44 to fix security issues (LP: #1464895):
  - CVE-2015-3152
* Upstream also includes lots of line ending changes (from CRLF -> LF)
* Removed hotfix patch now included in upstream release (MDEV-8115)

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
ERROR HY000: Table 'user' was not locked with LOCK TABLES
183
183
INSERT INTO t2 VALUES ("DROP USER test_3@localhost with table locked");
184
184
UNLOCK TABLE;
 
185
CREATE DATABASE db;
 
186
CREATE TABLE db.t1 LIKE t2;
 
187
CREATE TABLE t3 LIKE t2;
 
188
DROP TABLE t3;
 
189
DROP DATABASE db;
185
190
DROP USER test_3@localhost;
186
191
DROP FUNCTION f2;
187
192
DROP PROCEDURE p2;