malloydata / malloy

Malloy is an experimental language for describing data relationships and transformations.
http://www.malloydata.dev
MIT License
1.92k stars 75 forks source link

Scalar Lenses: order by field not available in the output space #1605

Closed lloydtabb closed 5 months ago

lloydtabb commented 5 months ago

Unknown field in the output space

run: duckdb.table('data/state_facts.parquet') extend {
  measure: c is count()
}
-> popular_name + c + {
  nest: state + c + {order_by: state}
}