We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5631e9a commit 7c722f3Copy full SHA for 7c722f3
1 file changed
crates/pgt_completions/src/providers/columns.rs
@@ -20,7 +20,7 @@ pub fn complete_columns<'a>(ctx: &CompletionContext<'a>, builder: &mut Completio
20
description: format!("Table: {}.{}", col.schema_name, col.table_name),
21
kind: CompletionItemKind::Column,
22
completion_text: None,
23
- detail: Some(format!("{}", col.type_name)),
+ detail: Some(col.type_name.to_string()),
24
};
25
26
// autocomplete with the alias in a join clause if we find one
0 commit comments