~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/t/show.test

  • Committer: Brian Aker
  • Date: 2010-03-02 02:31:50 UTC
  • mto: (1309.2.12 build)
  • mto: This revision was merged to the branch mainline in revision 1317.
  • Revision ID: brian@gaz-20100302023150-3ubc5yepuflpm24r
Adding more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create schema everything;
 
2
 
 
3
-- source include/everything.sql
 
4
 
 
5
show tables;
 
6
 
 
7
show create table branch;
 
8
show create table container;
 
9
show create table document;
 
10
show create table genstats_attributes;
 
11
show create table htmlcode;
 
12
show create table htmlpage;
 
13
show create table image;
 
14
show create table javascript;
 
15
show create table knowledge_item;
 
16
show create table links;
 
17
show create table mail;
 
18
show create table node;
 
19
show create table nodegroup;
 
20
show create table nodelet;
 
21
show create table nodemethod;
 
22
show create table nodetype;
 
23
show create table project;
 
24
show create table project_document;
 
25
show create table question;
 
26
show create table redirects;
 
27
show create table releases;
 
28
show create table revision;
 
29
show create table setting;
 
30
show create table symlink;
 
31
show create table themesetting;
 
32
show create table typeversion;
 
33
show create table user;
 
34
show create table version;
 
35
show create table weblog;
 
36
show create table workspace;
 
37
 
 
38
show columns from branch;
 
39
show columns from container;
 
40
show columns from document;
 
41
show columns from genstats_attributes;
 
42
show columns from htmlcode;
 
43
show columns from htmlpage;
 
44
show columns from image;
 
45
show columns from javascript;
 
46
show columns from knowledge_item;
 
47
show columns from links;
 
48
show columns from mail;
 
49
show columns from node;
 
50
show columns from nodegroup;
 
51
show columns from nodelet;
 
52
show columns from nodemethod;
 
53
show columns from nodetype;
 
54
show columns from project;
 
55
show columns from project_document;
 
56
show columns from question;
 
57
show columns from redirects;
 
58
show columns from releases;
 
59
show columns from revision;
 
60
show columns from setting;
 
61
show columns from symlink;
 
62
show columns from themesetting;
 
63
show columns from typeversion;
 
64
show columns from user;
 
65
show columns from version;
 
66
show columns from weblog;
 
67
show columns from workspace;
 
68
 
 
69
show indexes from branch;
 
70
show indexes from container;
 
71
show indexes from document;
 
72
show indexes from genstats_attributes;
 
73
show indexes from htmlcode;
 
74
show indexes from htmlpage;
 
75
show indexes from image;
 
76
show indexes from javascript;
 
77
show indexes from knowledge_item;
 
78
show indexes from links;
 
79
show indexes from mail;
 
80
show indexes from node;
 
81
show indexes from nodegroup;
 
82
show indexes from nodelet;
 
83
show indexes from nodemethod;
 
84
show indexes from nodetype;
 
85
show indexes from project;
 
86
show indexes from project_document;
 
87
show indexes from question;
 
88
show indexes from redirects;
 
89
show indexes from releases;
 
90
show indexes from revision;
 
91
show indexes from setting;
 
92
show indexes from symlink;
 
93
show indexes from themesetting;
 
94
show indexes from typeversion;
 
95
show indexes from user;
 
96
show indexes from version;
 
97
show indexes from weblog;
 
98
show indexes from workspace;
 
99
 
 
100
drop schema everything;