From 28402eb95661a631e85fd115eeae95f1fd91f419 Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Mon, 7 Oct 2019 04:58:48 -0700 Subject: [PATCH] Update sql language syntax (#77601) * update sql language syntax * Remove changes to sql grammar --- extensions/sql/language-configuration.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/extensions/sql/language-configuration.json b/extensions/sql/language-configuration.json index a9c154bcec8..cf96472ffd8 100644 --- a/extensions/sql/language-configuration.json +++ b/extensions/sql/language-configuration.json @@ -12,8 +12,9 @@ ["{", "}"], ["[", "]"], ["(", ")"], - ["\"", "\""], - ["'", "'"] + { "open": "\"", "close": "\"", "notIn": ["string"] }, + { "open": "N'", "close": "'", "notIn": ["string", "comment"] }, + { "open": "'", "close": "'", "notIn": ["string", "comment"] } ], "surroundingPairs": [ ["{", "}"],