~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
SELECT f1 FROM t1;
277
277
DROP TABLE t1;
278
278
 
 
279
--echo #
 
280
--echo # Bug#12406055 BUFFER OVERFLOW OF VARIABLE 'BUFF' IN STRING::SET_REAL
 
281
--echo # 
 
282
 
 
283
--echo # Ignoring output from misc. float operations
 
284
--disable_result_log
 
285
 
 
286
let $nine_65=
 
287
99999999999999999999999999999999999999999999999999999999999999999;
 
288
 
 
289
select format(-1.7976931348623157E+307,256) as foo;
 
290
select least(-1.1111111111111111111111111,
 
291
             - group_concat(1.7976931348623157E+308)) as foo;
 
292
eval select concat((truncate((-1.7976931348623157E+307),(0x1e))),
 
293
                   ($nine_65)) into @a;
 
294
--enable_result_log
 
295
 
279
296
--echo End of 5.0 tests