We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d670744 commit 8835527Copy full SHA for 8835527
src/language/providers/peekProvider.ts
@@ -36,7 +36,7 @@ export const peekProvider = languages.registerDefinitionProvider({ language: `sq
36
// Otherwise:
37
// - if SQL naming is in use, then use the default schema
38
// - if system naming is in use, then don't pass a library and the library list will be used
39
- const schema = ref.object.schema ? Statement.delimName(ref.object.schema, true) : naming === `sql` ? defaultSchema : undefined;
+ const schema = ref.object.schema ? Statement.delimName(ref.object.schema, true) : naming === `sql` ? Statement.delimName(defaultSchema) : undefined;
40
41
const possibleObjects = await Schemas.resolveObjects([{name, schema}], [`*LIB`]);
42
0 commit comments