12345678910111213141516171819202122 |
- (
- (let config (DataSource 'config))
- (let res_sink (DataSink 'result))
- # Struct<Int32, String, Utf8?> -> Struct<Uint8?, Utf8?> (good)
- (let targetType (StructType '('a (OptionalType (DataType 'Uint8))) '('b (OptionalType (DataType 'Utf8)))))
- (let value (AsStruct '('a (Int32 '1)) '('b (String 'one)) '('c (Nothing (OptionalType (DataType 'Utf8))))))
- (let cast (StrictCast value targetType))
- (let world (Write! world res_sink (Key) cast '('('type))))
- # Struct<Int32, String, String?> -> Struct<Int8, Utf8, Float?>? (fail)
- (let targetType (StructType '('a (DataType 'Int8)) '('b (DataType 'Utf8)) '('c (OptionalType (DataType 'Float)))))
- (let value (AsStruct '('a (Int32 '-1)) '('b (String 'one)) '('d (Just (String 'one)))))
- (let cast (StrictCast value targetType))
- (let world (Write! world res_sink (Key) cast '('('type))))
- (let world (Commit! world res_sink))
- (return world)
- )
|