cccs-jc
cccs-jc
@krassowski we have developed a jupyterlab extension which provides code completion from Spark sql and Trino. You can see the features of the extension here https://github.com/CybercentreCanada/jupyterlab-sql-editor You'll notice that we...
We've noticed that sometimes the sql-language-server (LSP node server) we use stops or dies for some reason. For example this will happen when putting a laptop to sleep. In this...
I would like to invoke a command `sqlLanguageServer.fixAllFixableProblems` which is implemented in the sql-language-server LSP https://github.com/joe-re/sql-language-server You can see it in action in VSCode here https://user-images.githubusercontent.com/4954534/84964358-84a95500-b13e-11ea-9c4f-0b787306bbdf.gif I would like to...
I have implemented a sparksql code mirror and I'm using sql-language-server to handle code completion. I want to add renaming to the sql-language-server. For example to rename all occurance of...
## Description I followed the jupterlab extension tutorial https://jupyterlab.readthedocs.io/en/stable/extension/extension_tutorial.html I was able to create an extension, build it and see it in action in jupyterlab. So I know my project...
Jupyter and JupyterLab are able to talk to a language server. It supports editing files (.sql) or editing in a jupyter cell (for instance is cell with a magic of...
hey @joe-re when I run sql-language-server within jupyterlab-lsp I configure initialize 2 sql-language-server. One for sparksql and one for trino ```python c.LanguageServerManager.language_servers = { "sparksql-language-server": { "argv": [mgr.nodejs, node_module_path, *args],...
I'm using sql-language-server within JupyterLab that is using ipython magics %%sparksql and %%trino https://github.com/CybercentreCanada/jupyterlab-sql-editor In that environment each magic is associated with mime type of `text/x-sparksql` and `text/x-trino`. There is...
Hey @joe-re I'm trying to debug the sql-language-server extension inside VSCode. I see there are 2 launch configurations. One for the VSCode client and one to attach to the sql-language-server...
sql-language-server currently supports 3 types of adapters - MySQL - PostgreSQL - SQLite3 In this fork I have implemented a forth `adapter` named `json`. The idea is to load a...