Skip to content

Commit

Permalink
fix: span for ref alias
Browse files Browse the repository at this point in the history
  • Loading branch information
apskhem committed Mar 14, 2024
1 parent 792167f commit d0c4057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/analyzer/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,12 @@ impl Indexer {
RefIdent {
span_range: ident.span_range.clone(),
schema: Some(Ident {
span_range: 0..0, // FIXME:
span_range: ident.span_range.clone(),
raw: schema.clone(),
to_string: schema.clone(),
}),
table: Ident {
span_range: ident.table.span_range.clone(),
span_range: ident.span_range.clone(),
raw: table.clone(),
to_string: table.clone(),
},
Expand Down

0 comments on commit d0c4057

Please sign in to comment.