Comments
1 comment
-
Thankyou for raising this issue, we have identified the problem and will have it fixed in the next release.
It looks like it just affects wildcard expansion when done part-way through a large script. Sorry if this causes any inconvenience.
Thankyou for your continuing interest in the early access release. We look forward to hearing more feedback from you soon!
Chris
Add comment
Please sign in to leave a comment.
To replicate, generate 5000 characters the easy way:
DECLARE @Count int
SET @Count = 50
WHILE @Count > 0
BEGIN
PRINT REPLICATE('-', 100)
SET @Count = @Count - 1
END
then enter a valid SELECT * FROM MyTable
then expand the *
The corruption looks like this:
Before
SELECT * FROM MyTable
After
MyID,
MyField FROM MyTable