File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ export function keywordCompletionSource(dialect: SQLDialect, upperCase = false):
181181
182182/// FIXME remove on 1.0 @internal
183183export function keywordCompletion ( dialect : SQLDialect , upperCase = false ) : Extension {
184- return dialect . language . data . of ( {
184+ return dialect . sqlLanguage . data . of ( {
185185 autocomplete : keywordCompletionSource ( dialect , upperCase )
186186 } )
187187}
@@ -196,7 +196,7 @@ export function schemaCompletionSource(config: SQLConfig): CompletionSource {
196196
197197/// FIXME remove on 1.0 @internal
198198export function schemaCompletion ( config : SQLConfig ) : Extension {
199- return config . schema ? ( config . dialect || StandardSQL ) . language . data . of ( {
199+ return config . schema ? ( config . dialect || StandardSQL ) . sqlLanguage . data . of ( {
200200 autocomplete : schemaCompletionSource ( config )
201201 } ) : [ ]
202202}
You can’t perform that action at this time.
0 commit comments