sql-language-server
sql-language-server copied to clipboard
SQL Language Server
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Bumps [svelte](https://github.com/sveltejs/svelte) from 3.43.1 to 3.49.0. Changelog Sourced from svelte's changelog. 3.49.0 Improve performance of string escaping during SSR (#5701) Add ComponentType and ComponentProps convenience types (#6770) Add support for...
When I open nvim to a `.sql` file, I get the following error: ``` LSP[sqlls]: Error NO_RESULT_CALLBACK_FOUND: { id = 1, jsonrpc = "2.0", result = { capabilities = {...
Bumps [parse-url](https://github.com/IonicaBizau/parse-url) from 6.0.0 to 6.0.2. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
The README.md does not document some of the available configuration options: `jupyterLabMode`, `projectID`, `keyFile` which are defined in: https://github.com/joe-re/sql-language-server/blob/9ef1cb11dcd0cd6ac8c486f45a0db2dbc29c2a89/packages/server/src/SettingStore.ts#L32-L36 It would be easier to use them if they were documented...
I've just managed to install the language server together with NeoVim/CoC, and I'm getting this error: > `db/structure.sql|1 col 2-3 error| [sql] Expected "$", "(", "--", "/*", "CREATE TABLE", "DELETE",...
```js import { parse } from "@joe-re/sql-parser"; // v1.2.1 const testParse = (query) => { try { parse(query); } catch (e) { // pretty printing error const { start, end...
Bumps [sqlite3](https://github.com/TryGhost/node-sqlite3) from 5.0.2 to 5.0.3. Release notes Sourced from sqlite3's releases. v5.0.3 What's Changed Updated bundled SQLite to v3.38.2 - @daniellockyer Enabled math functions in compiler options - @kewde...
Thank you for the ls for sql. Is there a way to have the linter ignore lines that include postgresql meta? For instance, the first line in the following: ```sql...