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

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/ld_simple.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 t1;
 
2
CREATE TABLE t1 (c1 INTEGER NOT NULL PRIMARY KEY, c2 VARCHAR(10), c3 DATETIME);
 
3
LOAD DATA LOCAL INFILE 'suite/engines/funcs/t/load_simple.inc' INTO TABLE t1 FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n';
 
4
SELECT * INTO OUTFILE '../../tmp/t1.dat' FROM t1;
 
5
SELECT * FROM t1 ORDER BY c1;
 
6
c1      c2      c3
 
7
1       abc     2007-02-14 14:38:37
 
8
2       def     2007-02-14 14:38:38
 
9
3       ghi     2007-02-14 14:38:39
 
10
TRUNCATE TABLE t1;
 
11
LOAD DATA INFILE '../../tmp/t1.dat' INTO TABLE t1;
 
12
SELECT * FROM t1 ORDER BY c1;
 
13
c1      c2      c3
 
14
1       abc     2007-02-14 14:38:37
 
15
2       def     2007-02-14 14:38:38
 
16
3       ghi     2007-02-14 14:38:39
 
17
DROP TABLE t1;