File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -157,8 +157,7 @@ export function keywordCompletionSource(dialect: SQLDialect, upperCase = false):
157157 return completeKeywords ( dialect . dialect . words , upperCase )
158158}
159159
160- /// FIXME remove on 1.0 @internal
161- export function keywordCompletion ( dialect : SQLDialect , upperCase = false ) : Extension {
160+ function keywordCompletion ( dialect : SQLDialect , upperCase = false ) : Extension {
162161 return dialect . language . data . of ( {
163162 autocomplete : keywordCompletionSource ( dialect , upperCase )
164163 } )
@@ -173,8 +172,7 @@ export function schemaCompletionSource(config: SQLConfig): CompletionSource {
173172 : ( ) => null
174173}
175174
176- /// FIXME remove on 1.0 @internal
177- export function schemaCompletion ( config : SQLConfig ) : Extension {
175+ function schemaCompletion ( config : SQLConfig ) : Extension {
178176 return config . schema ? ( config . dialect || StandardSQL ) . language . data . of ( {
179177 autocomplete : schemaCompletionSource ( config )
180178 } ) : [ ]
You can’t perform that action at this time.
0 commit comments