Skip to content

Commit

Permalink
Fix GetColumns formatting
Browse files Browse the repository at this point in the history
fixes #29078
  • Loading branch information
ErikEJ authored and roji committed Sep 14, 2022
1 parent 6e56123 commit f96b731
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,8 @@ private void GetColumns(
[cc].[is_persisted] AS [computed_is_persisted],
CAST([e].[value] AS nvarchar(MAX)) AS [comment],
[c].[collation_name],
[c].[is_sparse]";

commandText += @"FROM
[c].[is_sparse]
FROM
(
SELECT[v].[name], [v].[object_id], [v].[schema_id]
FROM [sys].[views] v WHERE ";
Expand Down

0 comments on commit f96b731

Please sign in to comment.