mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:59:48 -05:00
- Fixed handling of PlaceCommasBeforeNextStatement so that it doesn't add whitespace unnecessarily. This ensures that repeated formats of the same text shouldn't keep adding whitespace - Added tests covering a number of scenarios related to this
7 lines
76 B
Transact-SQL
7 lines
76 B
Transact-SQL
|
|
CREATE PROCEDURE [dbo].[sp1]
|
|
AS
|
|
SELECT c1 ,c2 ,c3
|
|
FROM [dbo].[T1]
|
|
RETURN 0
|