If I use an Alias in U-SQL the intellisense doesn't prompt me for anything. For example,
@query =
SELECT PropertyOne,
PropertyTwo
FROM @some_table;
@intellisense_test =
SELECT PropertyOne
FROM @query;
In this case the intellisense will work. But in the example below it will not.
@intellisense_test =
SELECT q.PropertyOne
FROM @query AS q;
This creates a problem when doing anything but simple queries. Does anyone know a work around for this?