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 fa0c1a3 commit ee68cc2Copy full SHA for ee68cc2
src/aiProviders/context.ts
@@ -178,7 +178,7 @@ export async function getSqlContextItems(input: string): Promise<{items: Db2Cont
178
for (let i = 0; i < tokens.length; i++) {
179
const token = tokens[i];
180
181
- if (token[i+1] && [`.`, `/`].includes(token[i+1]) && tokens[i + 2]) {
+ if (tokens[i+1] && [`.`, `/`].includes(tokens[i+1]) && tokens[i + 2]) {
182
const nextToken = tokens[i + 2];
183
184
possibleRefs.push({
0 commit comments