~drizzle-trunk/drizzle/development

1 by brian
clean slate
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