We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e5ebd commit c7ff064Copy full SHA for c7ff064
crates/pgt_completions/src/relevance/filtering.rs
@@ -101,13 +101,6 @@ impl CompletionFilter<'_> {
101
&& !ctx.matches_ancestor_history(&["insert_values", "field"])
102
&& !ctx.node_under_cursor_is_within_field_name("binary_expr_right")
103
}
104
- "mentioned_column_identifier" => match self.data {
105
- CompletionRelevanceData::Column(column) => ctx
106
- // todo(juleswritescode): collect mentioned columns from more clauses
107
- .get_mentioned_columns(&None)
108
- .is_some_and(|cols| cols.iter().any(|c| c.column == column.name)),
109
- _ => false,
110
- },
111
_ => false,
112
};
113
0 commit comments