~patrick-crews/drizzle/bug644529-test

« back to all changes in this revision

Viewing changes to tests/r/parser.result

  • Committer: lbieber
  • Date: 2010-09-17 01:47:05 UTC
  • mfrom: (1770.1.2 build)
  • Revision ID: lbieber@orisndriz08-20100917014705-zzqek5l4x962z5tg
Merge Stewart - remove the unbalanced my_end() call from drizzledump
Merge Stewart - move math functions into plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
select atan();
259
259
ERROR 42000: Incorrect parameter count in the call to native function 'atan'
260
260
select atan2(1, 2, 3);
261
 
ERROR 42000: Incorrect parameter count in the call to native function 'atan2'
 
261
ERROR 42000: Incorrect parameter count in the call to native function 'atan'
262
262
select concat();
263
263
ERROR 42000: Incorrect parameter count in the call to native function 'concat'
264
264
select concat("foo");
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");
391
395
atan(10)
392
396
1.47112767430373
393
397
select atan(10 AS p1);
394
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
398
atan(10 AS p1)
 
399
1.47112767430373
395
400
select atan(10 p1);
396
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
401
atan(10 p1)
 
402
1.47112767430373
397
403
select atan(10 AS "p1");
398
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
404
atan(10 AS "p1")
 
405
1.47112767430373
399
406
select atan(10 "p1");
400
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
407
atan(10 "p1")
 
408
1.47112767430373
401
409
select atan(10, 20);
402
410
atan(10, 20)
403
411
0.463647609000806
404
412
select atan(10 AS p1, 20);
405
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
413
atan(10 AS p1, 20)
 
414
0.463647609000806
406
415
select atan(10 p1, 20);
407
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
416
atan(10 p1, 20)
 
417
0.463647609000806
408
418
select atan(10 AS "p1", 20);
409
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
419
atan(10 AS "p1", 20)
 
420
0.463647609000806
410
421
select atan(10 "p1", 20);
411
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
422
atan(10 "p1", 20)
 
423
0.463647609000806
412
424
select atan(10, 20 AS p2);
413
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
425
atan(10, 20 AS p2)
 
426
0.463647609000806
414
427
select atan(10, 20 p2);
415
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
428
atan(10, 20 p2)
 
429
0.463647609000806
416
430
select atan(10, 20 AS "p2");
417
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
431
atan(10, 20 AS "p2")
 
432
0.463647609000806
418
433
select atan(10, 20 "p2");
419
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
434
atan(10, 20 "p2")
 
435
0.463647609000806
420
436
select atan(10 AS p1, 20 AS p2);
421
 
ERROR 42000: Incorrect parameters in the call to native function 'atan'
 
437
atan(10 AS p1, 20 AS p2)
 
438
0.463647609000806
422
439
DROP TABLE IF EXISTS t1;
423
440
SELECT "1997-12-31 23:59:59" + INTERVAL 1 SECOND;
424
441
"1997-12-31 23:59:59" + INTERVAL 1 SECOND