~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use data_dictionary;
2
2
show create table PROCESSLIST ;
3
3
Table   Create Table
4
 
PROCESSLIST     CREATE TABLE `processlist` (
 
4
PROCESSLIST     CREATE TABLE `PROCESSLIST` (
5
5
  `ID` bigint NOT NULL,
6
6
  `USER` varchar(16) NOT NULL,
7
7
  `HOST` varchar(1025) NOT NULL,
10
10
  `TIME` bigint NOT NULL,
11
11
  `STATE` varchar(256) NOT NULL,
12
12
  `INFO` varchar(100) NOT NULL
13
 
) ENGINE=FunctionEngine
 
13
) ENGINE=FunctionEngine COLLATE = utf8_general_ci
14
14
SELECT ID FROM processlist;
15
15
ID
16
16
#