~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/concat.test

  • Committer: Brian Aker
  • Date: 2011-05-24 08:42:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2317.
  • Revision ID: brian@tangent.org-20110524084255-wgc186fh0wd3dmne
Fix for bug 786509

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
SELECT "1" || "2";
4
4
SELECT 1 || 2;
5
5
 
 
6
SELECT "this" || "dog" || "does" || "not" || "hunt";