aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/library/yql/tests/s-expressions/suites/Scheme/ForceInferPragma.yql
blob: 33f40d279affef9d43943af77275334c52c4d867 (plain) (blame)
1
2
3
4
5
6
7
(
    (let world (Configure! world (DataSource '"yt" '"$all") '"Attr" '"forceinferschema" '"2"))
    (let x (Read! world (DataSource '"yt" '"plato") (Key '('table (String '"Input"))) (Void) '()))
    (let result (DataSink 'result))
    (let world (Write! (Left! x) result (Key) (Right! x) '('('type) '('autoref))))
    (return (Commit! (Commit! world result) (DataSink '"yt" '"plato")))
)