Is there any response to this? This is still an issue that breaks formatting when using the OVER clause. Specifically if you say OVER(PARTITION BY <X> ORDER BY<Y>)
For example this query (using _ to force indentation)
SELECT
_ [Name],
_ ROW_NUMBER() OVER (PARTITION BY [Name] ORDER BY [Name])
FROM
_ [#Table];
gets formatted to this
SELECT
_ [Name],
_ ROW_NUMBER() OVER (PARTITION BY [Name]
ORDER BY [Name])
FROM
_ [#Table];
Is there any response to this? This is still an issue that breaks formatting when using the OVER clause. Specifically if you say OVER(PARTITION BY <X> ORDER BY<Y>)
For example this query (using _ to force indentation)
SELECT
_ [Name],
_ ROW_NUMBER() OVER (PARTITION BY [Name] ORDER BY [Name])
FROM
_ [#Table];
gets formatted to this
SELECT
_ [Name],
_ ROW_NUMBER() OVER (PARTITION BY [Name]
ORDER BY [Name])
FROM
_ [#Table];