~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/init_file.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INSERT INTO init_file.startup VALUES ( NOW() );
 
2
SELECT * INTO @X FROM init_file.startup limit 0,1;
 
3
SELECT * INTO @Y FROM init_file.startup limit 1,1;
 
4
SELECT YEAR(@X)-YEAR(@Y);
 
5
YEAR(@X)-YEAR(@Y)
 
6
0
 
7
DROP DATABASE init_file;
 
8
ok
 
9
end of 4.1 tests
 
10
select * from t1;
 
11
x
 
12
3
 
13
5
 
14
7
 
15
11
 
16
13
 
17
select * from t2;
 
18
y
 
19
30
 
20
3
 
21
11
 
22
13
 
23
drop table t1, t2;