blob: 87cbdfe0dced53d691f21d5dc8789bf24308b1ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* syntax version 1 */
/* postgres can not */
/* kikimr can not */
use plato;
--insert into Output
select
TablePath() as table_path,
TableRecordIndex() as table_rec,
TableName("foo/bar") as table_name1,
TableName("baz") as table_name2,
TableName() as table_name3
from Input
where key = '800'
;
|