blob: 449fbd3b83d0592bcf2ab432cf48bd9147b9626b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* syntax version 1 */
/* postgres can not */
USE plato;
$a = CAST(Unicode::ToUpper("T"u) AS String) || "able";
$b = CAST(Unicode::ToUpper("T"u) AS String) || "able";
insert into @$a
select 1 as x;
commit;
select * from @$b;
|