sqruff_lib/rules/aliasing/
al02.rsuse ahash::AHashMap;
use sqruff_lib_core::dialects::syntax::{SyntaxKind, SyntaxSet};
use super::al01::{Aliasing, RuleAL01};
use crate::core::config::Value;
use crate::core::rules::base::{Erased, ErasedRule, LintResult, Rule, RuleGroups};
use crate::core::rules::context::RuleContext;
use crate::core::rules::crawlers::{Crawler, SegmentSeekerCrawler};
use crate::utils::functional::context::FunctionalContext;
#[derive(Debug, Clone)]
pub struct RuleAL02 {
base: RuleAL01,
}
impl Default for RuleAL02 {
fn default() -> Self {
Self {
base: RuleAL01::default()
.target_parent_types(const { SyntaxSet::new(&[SyntaxKind::SelectClauseElement]) }),
}
}
}
impl RuleAL02 {
pub fn aliasing(mut self, aliasing: Aliasing) -> Self {
self.base = self.base.aliasing(aliasing);
self
}
}
impl Rule for RuleAL02 {
fn load_from_config(&self, config: &AHashMap<String, Value>) -> Result<ErasedRule, String> {
let aliasing = match config.get("aliasing").unwrap().as_string().unwrap() {
"explicit" => Aliasing::Explicit,
"implicit" => Aliasing::Implicit,
_ => unreachable!(),
};
let mut rule = RuleAL02::default();
rule.base = rule.base.aliasing(aliasing);
Ok(rule.erased())
}
fn name(&self) -> &'static str {
"aliasing.column"
}
fn description(&self) -> &'static str {
"Implicit/explicit aliasing of columns."
}
fn long_description(&self) -> &'static str {
r#"
**Anti-pattern**
In this example, the alias for column `a` is implicit.
```sql
SELECT
a alias_col
FROM foo
```
**Best practice**
Add the `AS` keyword to make the alias explicit.
```sql
SELECT
a AS alias_col
FROM foo
```
"#
}
fn groups(&self) -> &'static [RuleGroups] {
&[RuleGroups::All, RuleGroups::Core, RuleGroups::Aliasing]
}
fn eval(&self, context: RuleContext) -> Vec<LintResult> {
if FunctionalContext::new(context.clone())
.segment()
.children(None)
.last()
.unwrap()
.raw()
== "="
{
return Vec::new();
}
self.base.eval(context)
}
fn crawl_behaviour(&self) -> Crawler {
SegmentSeekerCrawler::new(const { SyntaxSet::new(&[SyntaxKind::AliasExpression]) }).into()
}
}