~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_time.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

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
#