~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_concat.result

  • Committer: Brian Aker
  • Date: 2011-02-04 09:29:39 UTC
  • mfrom: (2139.3.6 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092939-nlwrimamw0fxxhgl
Main bit of this patch is that Inno now just uses the identifier so we only
have one spot to make changes for paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
select 'a' union select concat('a', -4.5);
40
40
a
41
41
a
42
 
a-4.5
 
42
a-4.
43
43
select 'a' union select concat('a', -(4 + 1));
44
44
a
45
45
a
67
67
select 'a' union select concat('a', -0.0000);
68
68
a
69
69
a
70
 
a0.0000
 
70
a0.0
71
71
select concat((select x from (select 'a' as x) as t1 ),
72
72
(select y from (select 'b' as y) as t2 )) from (select 1 union select 2 )
73
73
as t3;