~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser.result

move ABS() function into math_functions plugin. We now have '3 AS three' allowed as a parameter, just like all the UDFs did

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
abs(3)
323
323
3
324
324
select abs(3 AS three);
325
 
ERROR 42000: Incorrect parameters in the call to native function 'abs'
 
325
abs(3 AS three)
 
326
3
326
327
select abs(3 three);
327
 
ERROR 42000: Incorrect parameters in the call to native function 'abs'
 
328
abs(3 three)
 
329
3
328
330
select abs(3 AS "three");
329
 
ERROR 42000: Incorrect parameters in the call to native function 'abs'
 
331
abs(3 AS "three")
 
332
3
330
333
select abs(3 "three");
331
 
ERROR 42000: Incorrect parameters in the call to native function 'abs'
 
334
abs(3 "three")
 
335
3
332
336
set @bar="bar";
333
337
set @foobar="foobar";
334
338
select instr("foobar", "bar");