dbcodeio / public

The Power of Databases, The Convenience of VS Code: All in One Place
11 stars 0 forks source link

No hints due to semicolon #46

Open DIMANRUS opened 1 week ago

DIMANRUS commented 1 week ago

Hello, If I don't put a semicolon, there won't be any hints for slelect below image But with a semicolon they are image

mikeburgh commented 1 week ago

Yes, the parser is using the semi colon as the statement boundary.. so it knows where one starts and ends.

I might be able to change that to look for select/insert/update/delete/create/etc... but that's going to lead to other issues when I get around to it being able to understand CTE's

DIMANRUS commented 6 days ago

Okay. I'll put a semicolon then.