aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/binding/table_concat_strict_binding.sql
blob: ba55ba86ac689bb7bd1daf4a6eed172d81991efc (plain) (blame)
1
2
3
4
5
6
7
8
9
/* syntax version 1 */
/* postgres can not */
$a = "Input";
SELECT count(*) FROM plato.concat_strict($a,$a);

USE plato;

$a = "Input";
SELECT count(*) FROM concat_strict($a,$a);