How can we help you today? How can we help you today?

INTO keyword not aligning correctly

When I start with the following code:
;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
a.higgins
0

Comments

3 comments

  • David Priddle
    Hi a.higgins,

    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
    David Priddle
    0
  • a.higgins
    The latest release works perfectly, thanks very much!
    a.higgins
    0
  • David Priddle
    Hi a.higgins,

    Thanks for letting me know!

    Best regards,

    David
    David Priddle
    0

Add comment

Please sign in to leave a comment.