~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/loaddata_autocom.inc

  • Committer: lbieber
  • Date: 2010-09-26 03:23:39 UTC
  • mfrom: (1793.1.1 build)
  • Revision ID: lbieber@orisndriz08-20100926032339-59p5xxhkloa09759
Merge Monty - Beginning of catalog support, adds a default local catalog. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# So use a dummy PK here.
12
12
create table t1 (id int not null auto_increment primary key, a text, b text);
13
13
start transaction;
14
 
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
 
14
load data infile '../../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
15
15
commit;
16
16
select count(*) from t1;
17
17
truncate table t1;
18
18
start transaction;
19
 
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
 
19
load data infile '../../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
20
20
rollback;
21
21
select count(*) from t1;
22
22