Hi all, The current grammar for Projection (https://nightlies.apache.org/asterixdb/SQLPP.html#prod201) doesn’t seem to support the expression “v1.v2.*”, only a single variable “v1.*”. Is there a technical reason for this? (If not, can I make a feature request? :-))
My current workaround is to specify something like: “FROM MyDataset d LET content = d.msg.content SELECT content.* EXCLUDE extra” But ideally, I want to write the following query (which currently throws a syntax error): “FROM MyDataset d SELECT d.msg.content.* EXCLUDE extra” Best, Glenn