~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/concat.test

  • 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
# Test CONCAT operator
 
2
SELECT "foo" || "dog";
 
3
SELECT "1" || "2";
 
4
SELECT 1 || 2;
 
5