ColumnRefs.yqls 352 B

12345678910111213
  1. (
  2. #comment
  3. (let config (DataSource 'config))
  4. (let res_sink (DataSink 'result))
  5. (let data (FormatType (TupleType
  6. (TypeOf (PgStar))
  7. (TypeOf (PgQualifiedStar 'a))
  8. (TypeOf (PgColumnRef 'a))
  9. (TypeOf (PgColumnRef 'a 'b)))))
  10. (let world (Write! world res_sink (Key) data '('('type))))
  11. (let world (Commit! world res_sink))
  12. (return world)
  13. )