INTO keyword not aligning correctly
a.higgins
Posts: 90 Bronze 2
When I start with the following code:
and apply formatting:
The "INTO #tmp" value is left hanging out after the last column, instead of being aligned with the SELECT and FROM
Expected result:
;WITH a AS ( SELECT 1 AS x ,2 AS y ) SELECT * INTO #tmp FROM a
and apply formatting:
;WITH a AS ( SELECT 1 AS x ,2 AS y ) SELECT a.x ,a.y INTO #tmp FROM a
The "INTO #tmp" value is left hanging out after the last column, instead of being aligned with the SELECT and FROM
Expected result:
;WITH a AS ( SELECT 1 AS x ,2 AS y ) SELECT a.x ,a.y INTO #tmp FROM a
Comments
Unfortunately this is another thing we have fixed but haven't quite released yet!
We're building the release now, so should have it out today.
Best regards,
David
Thanks for letting me know!
Best regards,
David