~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Vijay Samuel
  • Date: 2010-08-20 02:23:54 UTC
  • mfrom: (1720.1.4 build)
  • mto: (1726.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1727.
  • Revision ID: vijay@vijay-20100820022354-sxunltk8q3nb8ld2
Merge removed the drizzled/option.h include from client_priv.h and archive_reader.

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
#