Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit ff800e4

Browse files
committed
Remove exports for deprecated functions
1 parent dfa6ada commit ff800e4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/sql.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}) : []

0 commit comments

Comments
 (0)