~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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 sleep(1),NOW()-SYSDATE() as zero;
 
11
# End of 5.0 tests