blob: 4c97811fa6b98f213e7f079f23b92f3ec33c4d4b (
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.txt", $foo_url);
$bar_url = "http_test://" || "bar1.txt" || substring(FileContent("foo.txt"),10);
PRAGMA FILE("bar.txt", $bar_url);
SELECT
$bar_url;
END DEFINE;
SELECT
*
FROM $sub();
|