~ubuntu-branches/ubuntu/quantal/mysql-5.5/quantal-security

« back to all changes in this revision

Viewing changes to mysql-test/t/ctype_utf8mb4.test

  • Committer: Package Import Robot
  • Author(s): Seth Arnold
  • Date: 2013-04-18 18:15:39 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130418181539-7uo1w041b4h2ulbs
Tags: 5.5.31-0ubuntu0.12.10.1
* SECURITY UPDATE: Update to 5.5.31 to fix security issues (LP: #1170516)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html
* debian/patches/71_disable_rpl_tests.patch: refreshed.
* debian/patches/fix-mysqldump-test.patch: removed, fixed differently
  upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1812
1812
DROP TABLE t1, t2;
1813
1813
 
1814
1814
--echo #
 
1815
--echo # Bug#13581962 HIGH MEMORY USAGE ATTEMPT, THEN CRASH WITH 
 
1816
--echo # LONGTEXT, UNION, USER VARIABLE
 
1817
--echo # Bug#14096619 UNABLE TO RESTORE DATABASE DUMP
 
1818
--echo #
 
1819
 
 
1820
CREATE TABLE t1(f1 LONGTEXT CHARACTER SET utf8mb4);
 
1821
INSERT INTO t1 VALUES ('a');
 
1822
SELECT @a:= CAST(f1 AS SIGNED) FROM t1
 
1823
UNION ALL
 
1824
SELECT CAST(f1 AS SIGNED) FROM t1;
 
1825
DROP TABLE t1;
 
1826
 
 
1827
--echo # End of test for Bug#13581962,Bug#14096619
 
1828
 
 
1829
--echo #
1815
1830
--echo # End of 5.5 tests
1816
1831
--echo #
1817
1832