summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/file/nested_eval_over_pending_file_path.yql
blob: 57e43cecf4a0d1367503a8fb12033d1a4fa11c0a (plain) (blame)
1
2
3
4
5
6
7
$p = 'http_test://' || 'foo.txt';
pragma file('foo.txt',$p);

$e1 = EvaluateExpr(FileContent('foo.txt'));
$e2 = EvaluateExpr($e1);

select $e1, $e2;