~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/data_dictionary.result

Small cleanups, pushing test cases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE SCHEMA data_dictionary;
 
2
SELECT ID FROM data_dictionary.processlist;
 
3
ID
 
4
#
 
5
SELECT ID FROM data_dictionary.processlist ORDER BY ID;
 
6
ID
 
7
#
 
8
SELECT a.ID FROM data_dictionary.processlist as a, data_dictionary.processlist as b ORDER BY ID;
 
9
ID
 
10
1
 
11
SELECT a.ID FROM data_dictionary.processlist as a, data_dictionary.processlist as b;
 
12
ID
 
13
#
 
14
SELECT count(*) FROM data_dictionary.plugins;
 
15
count(*)
 
16
#
 
17
SELECT count(*) FROM data_dictionary.modules;
 
18
count(*)
 
19
#
 
20
CREATE SCHEMA drizzleslap;
 
21
DROP SCHEMA drizzleslap;
 
22
DROP SCHEMA data_dictionary;