pub struct RuleCV07;Expand description
CV07: Prefer COALESCE over CASE with IS NULL.
A CASE expression that tests a single column with IS NULL in the WHEN clause and returns that column in the ELSE clause can be simplified to COALESCE.
Example:
-- Flagged:
CASE WHEN x IS NULL THEN y ELSE x END
-- Preferred:
COALESCE(x, y)Trait Implementations§
Source§impl Rule for RuleCV07
impl Rule for RuleCV07
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
One-line description.
Source§fn explanation(&self) -> &'static str
fn explanation(&self) -> &'static str
Multi-sentence explanation for AI consumers.
Source§fn is_fixable(&self) -> bool
fn is_fixable(&self) -> bool
Can this rule auto-fix violations?
Source§fn crawl_type(&self) -> CrawlType
fn crawl_type(&self) -> CrawlType
Which segments should be visited.
Source§fn eval(&self, ctx: &RuleContext<'_>) -> Vec<LintViolation>
fn eval(&self, ctx: &RuleContext<'_>) -> Vec<LintViolation>
Evaluate the rule at the given context, returning violations.
Auto Trait Implementations§
impl Freeze for RuleCV07
impl RefUnwindSafe for RuleCV07
impl Send for RuleCV07
impl Sync for RuleCV07
impl Unpin for RuleCV07
impl UnsafeUnpin for RuleCV07
impl UnwindSafe for RuleCV07
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more