blob: 5e70b05ab1eb73d05e618afa31400cb643558e6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* syntax version 1 */
use plato;
select *
from range("","foo","foo")
with schema Struct<Key:String>;
select *
from Range_strict("","foo","foo")
with schema Struct<Key:String>;
select * from Each(ListCreate(String))
with schema Struct<Key:Int32>;
select * from Each_strict(ListCreate(String))
with schema Struct<Key:Int32>;
|