You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trailing comments in a PQ document can cause an error (I tested by adding comments to one of a few pq files in a folder).
If you have
let
...
in Result
//My Trailing Comment
you get Microsoft.Data.Mashup.MashupExpressionException (0x80004005): Token Semicolon expected. Start position: (209, 1). End position (209, 7).
Interestingly, one can avoid the error by writing a semicolon after the final in statement: let ... in Result; //My Trailing Comment does not cause an error.
The text was updated successfully, but these errors were encountered:
Trailing comments in a PQ document can cause an error (I tested by adding comments to one of a few pq files in a folder).
If you have
you get
Microsoft.Data.Mashup.MashupExpressionException (0x80004005): Token Semicolon expected. Start position: (209, 1). End position (209, 7).
Interestingly, one can avoid the error by writing a semicolon after the final
in
statement:let ... in Result; //My Trailing Comment
does not cause an error.The text was updated successfully, but these errors were encountered: