SafeCastOverStruct.yqls 797 B

12345678910111213141516171819202122
  1. (
  2. (let config (DataSource 'config))
  3. (let res_sink (DataSink 'result))
  4. # Struct<Int32, String, Utf8> -> Struct<Uint8?, Utf8?>
  5. (let targetType (StructType '('a (OptionalType (DataType 'Uint8))) '('b (OptionalType (DataType 'Utf8)))))
  6. (let value (AsStruct '('a (Int32 '1)) '('b (String 'one)) '('c (Utf8 'two))))
  7. (let cast (SafeCast value targetType))
  8. (let world (Write! world res_sink (Key) cast '('('type))))
  9. # Struct<Int32, String> -> Struct<Int8, Utf8, Float?>?
  10. (let targetType (StructType '('a (DataType 'Int8)) '('b (DataType 'Utf8)) '('c (OptionalType (DataType 'Float)))))
  11. (let value (AsStruct '('a (Int32 '-1)) '('b (String 'one))))
  12. (let cast (SafeCast value targetType))
  13. (let world (Write! world res_sink (Key) cast '('('type))))
  14. (let world (Commit! world res_sink))
  15. (return world)
  16. )