From 086ee89a38b548ebdbfd7373c76abd66a81d344c Mon Sep 17 00:00:00 2001 From: Sneha Modi Date: Thu, 22 Dec 2011 23:11:48 +0530 Subject: [PATCH] Bug#11754150: A test case for Bug#6857 has been disabled in sp.test: An extra space was inserted in the code by mistake which was producing a result content mismatch. --- mysql-test/t/sp.test | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index a6e06e4aabe..d0fe9779da9 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -3340,9 +3340,8 @@ create procedure bug6857() begin declare t0, t1 int; declare plus bool default 0; - set t0 = unix_timestamp(); - select sleep(1.1); + select sleep(1.1); set t1 = unix_timestamp(); if t1 > t0 then set plus = 1;