~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-02 14:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702143548-onj30ry0sugr01uw
Removed all references to THREAD.

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");