~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/concat.result

  • Committer: Brian Aker
  • Date: 2011-02-24 20:50:45 UTC
  • mto: This revision was merged to the branch mainline in revision 2204.
  • Revision ID: brian@tangent.org-20110224205045-lp3t4z8stuia3i4r
Add in an ANSI || operator.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SELECT "foo" || "dog";
 
2
"foo" || "dog"
 
3
foodog
 
4
SELECT "1" || "2";
 
5
"1" || "2"
 
6
12
 
7
SELECT 1 || 2;
 
8
1 || 2
 
9
12