~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-05 18:10:38 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705181038-0ih0nnamu5qrut0y
Fixed prototypes. Cleaned define a little bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
select datediff("1997-12-31 23:59:59.000001","1997-12-30");
33
33
select datediff("1997-11-30 23:59:59.000001","1997-12-31");
 
34
SET @@SQL_MODE="ALLOW_INVALID_DATES";
 
35
select datediff("1997-11-31 23:59:59.000001","1997-12-31");
 
36
SET @@SQL_MODE="";
34
37
 
35
38
# This will give a warning
36
39
select datediff("1997-11-31 23:59:59.000001","1997-12-31");