Intellisense with Bracketed Column Names

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
fwholt
Posts: 4
Joined: Wed 29 Jun 2016 09:58

Intellisense with Bracketed Column Names

Post by fwholt » Fri 29 Jul 2016 12:23

Hello,

When writing a SQL statement like:

SELECT
c.CLIENT_ID,
c.CLIENT_NAME
FROM
dbo.CLIENT c;

if a new column is added below the CLIENT_NAME using brackets, then selecting the column in the intellisense list:

SELECT
c.CLIENT_ID,
c.CLIENT_NAME,
c.[CLIENT_ACTIVE]
FROM
dbo.CLIENT c;

Selecting from the intellisense list removes the lines below and ends up looking like:

SELECT
c.CLIENT_ID,
c.CLIENT_NAME,
c.[CLIENT_ACTIVE]

Is this a known issue?

Note: This only happens with multiline queries.

Info:
Microsoft SQL Server Management Studio 13.0.15600.2
SQL Complete Standard Edition 5.5.145
OS - Windows 10

Thanks.

.jp
Devart Team
Posts: 345
Joined: Wed 09 Sep 2009 06:55
Location: devart

Re: Intellisense with Bracketed Column Names

Post by .jp » Fri 29 Jul 2016 14:36

Hello,

Thanks for the post.

> Is this a known issue?

Yes, it has been already fixed. The fix will be included into the next maintenance release.

SQL Complete v5.5 R3 will be released soon.

Best Regards.

Post Reply