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

Issues with "INTO" keyword in 7.3.0.450

When I am applying the styling on the following code:
SELECT name,
	   object_id,
	   principal_id,
	   schema_id,
	   parent_object_id,
	   type,
	   type_desc,
	   create_date,
	   modify_date INTO #tmp FROM sys.objects ORDER BY name

And the result is:
SELECT
    name,
    object_id,
    principal_id,
    schema_id,
    parent_object_id,
    type,
    type_desc,
    create_date,
    modify_date INTO #tmp
FROM
    sys.objects
ORDER BY
    name

But I was excepting the following:
SELECT
    name,
    object_id,
    principal_id,
    schema_id,
    parent_object_id,
    type,
    type_desc,
    create_date,
    modify_date 
INTO 
	#tmp
FROM
    sys.objects
ORDER BY
    name

How can I do this?
1mc
0

Comments

2 comments

  • David Priddle
    Hi 1mc,

    We're putting together a release which should contain this fix now.

    Best regards,

    David
    David Priddle
    0
  • David Priddle
    Hi 1mc,

    We've just release a new build which includes a fix for formatting the INTO clause.

    Please let us know if this fixes it for you.

    Best regards,

    David
    David Priddle
    0

Add comment

Please sign in to leave a comment.