~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_system.result

  • Committer: Andrew Hutchings
  • Date: 2010-10-13 11:33:44 UTC
  • mto: (1848.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1849.
  • Revision ID: andrew@linuxjedi.co.uk-20101013113344-l8br9nkvqcns5o92
Output of unhex('ff') caused an endless loop due to 0-byte length accounting.

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
 
#
 
9
1
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 schema() AS `database()`,user() AS `user()`
 
17
Note    1003    select database() 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