~skinny.moey/drizzle/innodb-replication

« back to all changes in this revision

Viewing changes to tests/r/func_system.result

Merge of all refactor for functions into single plugin, this includes a new
catalog() function.

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