summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/file/subquery_nested_pending_file_name.yql
blob: 66aed87c48853cdace42267c3e9e4c2283a6313e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
DEFINE SUBQUERY $sub() AS
    $foo_url = "http_test://" || "foo1.txt";
    PRAGMA FILE($foo_url, $foo_url);
    $bar_url = "http_test://" || "bar1.txt" || substring(FileContent($foo_url),10);
    PRAGMA FILE($bar_url, $bar_url);
    SELECT
        $bar_url;
END DEFINE;

SELECT
    *
FROM $sub();