JohnsonLee

Results 11 comments of JohnsonLee

I have the similar problem with you. I couldn't jump appropriately in OCaml. And our configuration is exactly the same. ```elisp (global-tree-sitter-mode) (add-hook 'tree-sitter-after-on-hook #'tree-sitter-hl-mode) (global-evil-matchit-mode 1) ```

My environment: ``` > Executing 'doom info' with Emacs 28.1 at 2022-06-02 13:00:02 generated Jun 02, 2022 13:00:02 system Ubuntu 20.04.4 LTS Linux 5.10.102.1-microsoft-standard-WSL2 x86_64 emacs 28.1 ~/.emacs.d/ -> ~/.emacs.d/...

Maybe it is caused by something in doom emacs. I use doom like @leateng did.

I would like to get involved in this work.😊

> What's really giving me trouble is trying to have a `rocksdb::Transaction` that lives for some seconds at a time, and trying to access it from an async worker pool...

@tisonkun **BELOW IS ALSO THE PROPOSAL SUMITTED TO OSPP** To support `pg_catalog` related features. The main challenge is to support the [System Information Functions and Operators](https://www.postgresql.org/docs/current/functions-info.html#FUNCTIONS-INFO). I will try to...

I'll manage to provide similar features in #2931. ## Tasks - [ ] pg_database - [x] pg_namespace - [x] pg_class - [x] pg_collation, not supported yet, just like the mysql...

While supporting `\dt`, i.e. the following sql statement, I met some problems: ```sql SELECT n.nspname as "Schema", c.relname as "Name", CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view'...

@tisonkun > A workaround can be using the schema name as "oid" in this place. The shortcomings is the potential incompatibility with existing pg eco.

Next I will try to support dbeaver connection to greptime, via pg protocol. The following sql is the statements fail. ```sql SELECT typcategory FROM pg_catalog.pg_type WHERE 11 LIMIT 1 ```...