~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_time.test

  • Committer: Monty Taylor
  • Date: 2008-10-02 20:45:51 UTC
  • mfrom: (413.2.3 drizzle)
  • Revision ID: monty@inaugust.com-20081002204551-gousb6hhqlr6q1br
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
297
297
 
298
298
#
299
299
# Check positive shift. (it happens only on
300
 
# platfroms with unsigned time_t, such as QNX)
 
300
# platfroms with time_t, such as QNX)
301
301
#
302
302
select unix_timestamp('1970-01-01 03:00:01');
303
303
 
527
527
DROP TABLE t1;
528
528
 
529
529
#
530
 
# Bug #20927: sec_to_time treats big unsigned as signed
 
530
# Bug #20927: sec_to_time treats big as signed
531
531
#
532
 
# check if SEC_TO_TIME() handles BIGINT UNSIGNED values correctly
 
532
# check if SEC_TO_TIME() handles BIGINT values correctly
533
533
SELECT SEC_TO_TIME(CAST(-1 AS UNSIGNED));
534
534
 
535
535
#