~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_system.result

  • Committer: Brian Aker
  • Date: 2010-11-08 18:54:26 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108185426-fymkf2xnelupf11x
Rename lock methods to be style + well make sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
1
7
7
select user() like "%@%";
8
8
user() like "%@%"
9
 
1
 
9
#
10
10
select version() > "2009.01.756";
11
11
version() > "2009.01.756"
12
12
1
14
14
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
15
15
1       SIMPLE  NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL    No tables used
16
16
Warnings:
17
 
Note    1003    select database() AS `database()`,user() AS `user()`
 
17
Note    1003    select schema() AS `database()`,user() AS `user()`
18
18
create table t1 (version char(60)) select database(), user(), version() as 'version';
19
19
show create table t1;
20
20
Table   Create Table
21
21
t1      CREATE TABLE `t1` (
22
 
  `database()` varbinary(136) DEFAULT NULL,
23
 
  `user()` varbinary(308) DEFAULT NULL,
24
 
  `version` varchar(60) DEFAULT NULL
25
 
) ENGINE=DEFAULT
 
22
  `database()` VARBINARY(136) DEFAULT NULL,
 
23
  `user()` VARBINARY(308) DEFAULT NULL,
 
24
  `version` VARCHAR(60) COLLATE utf8_general_ci DEFAULT NULL
 
25
) ENGINE=DEFAULT COLLATE = utf8_general_ci
26
26
drop table t1;
27
27
select TRUE,FALSE,NULL;
28
28
TRUE    FALSE   NULL