You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have the situation where there are SQLFluff problem marked in the editor window but which do not correspond to the results when executing SQLFluff from terminal. I also enabled SQLFluff Show Output Channel and weirdly this seems correct (corresponding to terminal) but differs from the editor window.
When running SQLFluff Debug Extension no failed tests are listed.
sql code
CREATE TABLE [dbo].[test_table]
(
[id] [BIGINT] NULL
, [payload] [NVARCHAR](32) NULL
)
WITH
(
DISTRIBUTION = ROUND_ROBIN
, CLUSTERED COLUMNSTORE INDEX
);
The text was updated successfully, but these errors were encountered:
keen85
changed the title
VS code SQL editor marks problems but running SQLFluff via terminal it does not
VS code SQL editor marks problems but running SQLFluff via terminal doesn't detect problems
Feb 17, 2024
Hi, I have the situation where there are SQLFluff problem marked in the editor window but which do not correspond to the results when executing SQLFluff from terminal. I also enabled
SQLFluff Show Output Channel
and weirdly this seems correct (corresponding to terminal) but differs from the editor window.When running
SQLFluff Debug Extension
no failed tests are listed.sql code
settings.json
The text was updated successfully, but these errors were encountered: