~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/concat.test

Merge Monty - Updates to pandora-build to support features of gcc 4.5.

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
 
 
6
 
SELECT "this" || "dog" || "does" || "not" || "hunt";