summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/action/eval_values_output_table_subquery.yql
blob: 240f4d2263df898d5155e6a4dbf10d936b5771c0 (plain) (blame)
1
2
3
4
5
6
7
8
/* syntax version 1 */
/* postgres can not */
USE plato;

$a = (SELECT CAST(Unicode::ToUpper("o"u) AS String) || "utpu");
$a = $a || CAST(Unicode::ToLower("T"u) AS String);
INSERT INTO $a (key, subkey, value)
VALUES (1, "foo", false);