File tree 3 files changed +2
-8
lines changed
crates/pgt_completions/src
3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -85,10 +85,7 @@ impl<'a> CompletionContext<'a> {
85
85
mentioned_relations : HashMap :: new ( ) ,
86
86
} ;
87
87
88
- tracing:: warn!( "gathering tree context" ) ;
89
88
ctx. gather_tree_context ( ) ;
90
-
91
- tracing:: warn!( "gathering info from ts query" ) ;
92
89
ctx. gather_info_from_ts_queries ( ) ;
93
90
94
91
ctx
Original file line number Diff line number Diff line change @@ -57,10 +57,7 @@ impl CompletionRelevance<'_> {
57
57
let name = match self . data {
58
58
CompletionRelevanceData :: Function ( f) => f. name . as_str ( ) ,
59
59
CompletionRelevanceData :: Table ( t) => t. name . as_str ( ) ,
60
- CompletionRelevanceData :: Column ( c) => {
61
- //
62
- c. name . as_str ( )
63
- }
60
+ CompletionRelevanceData :: Column ( c) => c. name . as_str ( ) ,
64
61
} ;
65
62
66
63
if name. starts_with ( content) {
Original file line number Diff line number Diff line change 17
17
// YOU CAN COMMENT ME OUT :)
18
18
"db" : {
19
19
"host" : " 127.0.0.1" ,
20
- "port" : 54322 ,
20
+ "port" : 5432 ,
21
21
"username" : " postgres" ,
22
22
"password" : " postgres" ,
23
23
"database" : " postgres" ,
You can’t perform that action at this time.
0 commit comments