From 3ea06152781983eb9b7fc367d95d28d4ef57535d Mon Sep 17 00:00:00 2001 From: Joaquin Colacci Date: Thu, 16 Nov 2023 17:59:00 +0100 Subject: [PATCH 1/2] fix-sql-parser --- src/context/asyncContext.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/asyncContext.ts b/src/context/asyncContext.ts index f9333c9..68ab54c 100644 --- a/src/context/asyncContext.ts +++ b/src/context/asyncContext.ts @@ -417,7 +417,7 @@ export default class AsyncContext extends Context { * @returns {Promise>} */ async parseSql(sql: string): Promise> { - return this.clients.lsp.parseSql(sql); + return this.clients.lsp.parseSql(sql, true); } /** From 8049873a0af2abceeedc7df53ee40529a8481a3f Mon Sep 17 00:00:00 2001 From: Joaquin Colacci Date: Thu, 16 Nov 2023 18:00:14 +0100 Subject: [PATCH 2/2] version change --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 145c80b..79ccf19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to the Materialize extension for Visual Studio Code will be documented in this file. +## [0.3.2] - 2023-11-15 + +### Fixed + - Alternative SQL Parser in replacement of the LSP parsing command. + ## [0.3.1] - 2023-11-15 ### Fixed diff --git a/package.json b/package.json index a2bee40..63aa468 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ }, "displayName": "Materialize", "description": "Working environment for Materialize.", - "version": "0.3.1", + "version": "0.3.2", "tasks": [ { "problemMatcher": "$esbuild-watch"