mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -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
10 lines
88 B
Transact-SQL
10 lines
88 B
Transact-SQL
|
|
CREATE PROCEDURE [dbo].[sp1]
|
|
AS
|
|
SELECT
|
|
c1
|
|
,c2, c3
|
|
FROM
|
|
[dbo].[T1]
|
|
RETURN 0
|