~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/tests/r/data_dictionary.result

  • Committer: Brian Aker
  • Date: 2010-08-04 00:33:37 UTC
  • mfrom: (1638.7.11)
  • mto: This revision was merged to the branch mainline in revision 1685.
  • Revision ID: brian@gaz-20100804003337-pf0j6n141d1gklqi
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
show create table PROCESSLIST ;
3
3
Table   Create Table
4
4
PROCESSLIST     CREATE TABLE `processlist` (
5
 
  `ID` bigint NOT NULL DEFAULT '0',
6
 
  `USER` varchar(16) NOT NULL DEFAULT '',
7
 
  `HOST` varchar(1025) NOT NULL DEFAULT '',
8
 
  `DB` varchar(256) NOT NULL DEFAULT '',
9
 
  `COMMAND` varchar(16) NOT NULL DEFAULT '',
10
 
  `TIME` bigint NOT NULL DEFAULT '0',
11
 
  `STATE` varchar(256) NOT NULL DEFAULT '',
12
 
  `INFO` varchar(100) NOT NULL DEFAULT ''
 
5
  `ID` bigint NOT NULL,
 
6
  `USER` varchar(16) NOT NULL,
 
7
  `HOST` varchar(1025) NOT NULL,
 
8
  `DB` varchar(256) NOT NULL,
 
9
  `COMMAND` varchar(16) NOT NULL,
 
10
  `TIME` bigint NOT NULL,
 
11
  `STATE` varchar(256) NOT NULL,
 
12
  `INFO` varchar(100) NOT NULL
13
13
) ENGINE=FunctionEngine
14
14
SELECT ID FROM processlist;
15
15
ID