Skip to content

Commit 60e33cb

Browse files
committed
Fix issue with bind and null literal
Signed-off-by: worksofliam <[email protected]>
1 parent d80779f commit 60e33cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/results/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ export function parseStatement(editor?: vscode.TextEditor, existingInfo?: Statem
602602
}
603603

604604
if (sqlDocument) {
605-
if (statementInfo.qualifier !== `cl`) {
605+
if (![`cl`, `bind`].includes(statementInfo.qualifier)) {
606606
statementInfo.embeddedInfo = sqlDocument.removeEmbeddedAreas(statementInfo.statement, {replacement: `snippet`});
607607
}
608608
}

0 commit comments

Comments
 (0)