~james-page/ubuntu/precise/mysql-5.5/misc-fixes

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-06-11 07:34:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611073433-l9za2ni4ipp848y3
Tags: 5.5.24-0ubuntu0.12.04.1
* SECURITY UPDATE: Update to 5.5.24 to fix security issues (LP: #1011371)
  - http://dev.mysql.com/doc/refman/5.5/en/news-5-5-24.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
404
404
DROP TRIGGER trg1;
405
405
DROP TABLE t1;
406
406
 
 
407
 
 
408
--echo #
 
409
--echo # Bug #12408412: GROUP_CONCAT + ORDER BY + INPUT/OUTPUT
 
410
--echo #   SAME USER VARIABLE = CRASH
 
411
--echo #
 
412
 
 
413
SET @bug12408412=1;
 
414
SELECT GROUP_CONCAT(@bug12408412 ORDER BY 1) INTO @bug12408412;
 
415
 
407
416
--echo End of 5.5 tests