Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'MATCH' keyword crashes SQL Tools Service #1395

Closed
MattIrv opened this issue May 11, 2018 · 0 comments
Closed

'MATCH' keyword crashes SQL Tools Service #1395

MattIrv opened this issue May 11, 2018 · 0 comments

Comments

@MattIrv
Copy link
Contributor

MattIrv commented May 11, 2018

  • SQL Operations Studio Version: master

Steps to Reproduce:

  1. Write a query that uses the 'MATCH' keyword, like the below (taken from a report of the same issue in the vscode-mssql repo)
USE graphdemo
GO
-- Find Restaurants that John likes
SELECT Restaurant.name
FROM Person, likes, Restaurant
WHERE MATCH (Person-(likes)->Restaurant)
AND Person.name = 'John';
GO
-- Find Restaurants that John's friends like
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants