~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_str.test

  • Committer: lbieber
  • Date: 2010-10-08 01:11:05 UTC
  • mfrom: (1821.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101008011105-1tbwbvz9me9fy7ua
Merge Monty - Fixed the last of the ICC warnings. Turned on warnings=errors
Merge Brian - fixu bug #655558: SELECT 102/(1-1) should error on divide by zero          
Merge Brian - fix bug #654219: information_schema.key_column_usage does not contain information about FKs

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
 
99
99
select quote('\'\"\\test');
100
100
select quote(concat('abc\'', '\\cba'));
 
101
--error ER_DIVISION_BY_ZERO
101
102
select quote(1/0), quote('\0\Z');
102
103
select length(quote(concat(char(0),"test")));
103
104
select hex(quote(concat(char(224),char(227),char(230),char(231),char(232),char(234),char(235))));