~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/sysdate_is_now.test

  • Committer: Monty Taylor
  • Date: 2008-08-16 21:06:22 UTC
  • Revision ID: monty@inaugust.com-20080816210622-zpnn13unyinqzn72
Updated po files.

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