1234567891011121314 |
- $data1 = [
- <|x:nothing(int32?),y:10|>,
- <|x:just(1),y:10|>,
- ];
- $data2 = [
- <|x:nothing(int32?),y:just(10)|>,
- <|x:just(1),y:just(10)|>,
- <|x:just(1),y:nothing(int32?)|>,
- ];
- select x ?? Opaque(10), Opaque(nothing(int32?)) ?? y, Opaque(just(1)) ?? y from as_table($data1);
- select x ?? Opaque(just(10)),x ?? Opaque(nothing(int32?)),Opaque(nothing(int32?)) ?? y,Opaque(just(1)) ?? y from as_table($data2);
|