~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
SELECT "foo" || "dog";
"foo" || "dog"
foodog
SELECT "1" || "2";
"1" || "2"
12
SELECT 1 || 2;
1 || 2
12
SELECT "this" || "dog" || "does" || "not" || "hunt";
"this" || "dog" || "does" || "not" || "hunt"
thisdogdoesnothunt