In VS Code, we get an SQL syntax error, when using "ms" as a table alias. In Studio, the highlighting is not present.
Here is an example class for this behavior:
Class tmp.SyntaxErrorSqlAliasMs Extends %RegisteredObject
{
ClassMethod Example()
{
&sql( select ms.* from (select current_date) ms where 1 = 1 )
}
}
