~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_str.result

  • Committer: Brian Aker
  • Date: 2010-10-06 07:52:09 UTC
  • mto: (1821.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1822.
  • Revision ID: brian@tangent.org-20101006075209-0fu3u7zg9r8rw3i8
Fix issue with divide by zero not being an error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
quote(concat('abc\'', '\\cba'))
250
250
'abc\'\\cba'
251
251
select quote(1/0), quote('\0\Z');
252
 
quote(1/0)      quote('\0\Z')
253
 
NULL    '\0\Z'
254
 
Warnings:
255
 
Error   1365    Division by 0
 
252
ERROR 22012: Division by 0
256
253
select length(quote(concat(char(0),"test")));
257
254
length(quote(concat(char(0),"test")))
258
255
8