File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/lib/src/core/rules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ pub trait Rule: CloneRule + dyn_clone::DynClone + Debug + 'static + Send + Sync
179
179
templated_file : & TemplatedFile ,
180
180
tree : ErasedSegment ,
181
181
config : & FluffConfig ,
182
- ) -> ( Vec < SQLLintError > , Vec < LintFix > ) {
182
+ ) -> Vec < SQLLintError > {
183
183
let mut root_context = RuleContext :: new ( tables, dialect, config, tree. clone ( ) ) ;
184
184
let mut vs = Vec :: new ( ) ;
185
185
@@ -190,7 +190,7 @@ pub trait Rule: CloneRule + dyn_clone::DynClone + Debug + 'static + Send + Sync
190
190
191
191
self . crawl_behaviour ( ) . crawl ( & mut root_context, & mut |context| {
192
192
let resp =
193
- std:: panic:: catch_unwind ( std:: panic:: AssertUnwindSafe ( || self . eval ( context) ) ) ;
193
+ std:: panic:: catch_unwind ( std:: panic:: AssertUnwindSafe ( || self . eval ( context) ) ) ;
194
194
195
195
let resp = match resp {
196
196
Ok ( t) => t,
You can’t perform that action at this time.
0 commit comments