~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/time_function.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-05-11 18:47:32 UTC
  • mto: (2.1.2 sid) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100511184732-jhn055kfhxze24kt
Tags: upstream-5.1.46
ImportĀ upstreamĀ versionĀ 5.1.46

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t3;
 
2
CREATE TABLE t3(c1 TIME NOT NULL);
 
3
INSERT INTO t3 VALUES('00:00:00');
 
4
INSERT INTO t3 VALUES('23:59:59');
 
5
INSERT INTO t3 VALUES('99:99:99');
 
6
Warnings:
 
7
Warning 1265    Data truncated for column 'c1' at row 1
 
8
INSERT INTO t3 VALUES('12:00:00');
 
9
INSERT INTO t3 VALUES('13:13:13');
 
10
DROP TABLE t3;