~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/sysdate_is_now.test

  • Committer: Brian Aker
  • Date: 2009-02-05 09:11:16 UTC
  • Revision ID: brian@tangent.org-20090205091116-iy0ersp6bhyzt1ad
Removed dead variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# BUG#15101 restore aliasing of SYSDATE to NOW in 5.0
 
3
# this feature is activated via --sysdate-is-now mysqld init opt
 
4
#
 
5
# To test here
 
6
# 1. SYSDATE() does not distiguish from NOW()
 
7
# 2. SYSDATE() obeys set timestamp
 
8
 
 
9
set timestamp=1;
 
10
SELECT NOW()-SYSDATE() as zero;
 
11
# End of tests