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

« back to all changes in this revision

Viewing changes to mysql-test/t/cast.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:
307
307
 
308
308
DROP TABLE t1;
309
309
 
 
310
--echo #
 
311
--echo # Bug#13581962 HIGH MEMORY USAGE ATTEMPT, THEN CRASH WITH 
 
312
--echo # LONGTEXT, UNION, USER VARIABLE
 
313
--echo # Bug#14096619 UNABLE TO RESTORE DATABASE DUMP
 
314
--echo #
 
315
 
 
316
CREATE TABLE t1 AS SELECT CONCAT(CAST(REPEAT('9', 1000) AS SIGNED)),
 
317
                          CONCAT(CAST(REPEAT('9', 1000) AS UNSIGNED));
 
318
SHOW CREATE TABLE t1;
 
319
DROP TABLE t1;
 
320
 
 
321
--echo # End of test for Bug#13581962, Bug#14096619
 
322
 
310
323
--echo End of 5.1 tests