Hellen
Hellen
Node - Tablets tab Cluster - Tablets - every single tablet (/nodes -> nodes[number].SystemState.Tenants[0])
``` $a = select a, b from my_table; select * from |; ``` ( `|` - cursor position) should suggest `$a`.
1) ``` $a = select a, b as c from my_table; select | from $a; ``` 2) `select | from (select a, b as c from my_table)` (`|` - cursor...
`select 1 |` should suggest math operators.
Should autoclose construction `
LEFT JOIN - should suggest only columns from "left" table. RIGHT JOIN - should suggest only columns from "right" table. FULL/CROSS - should suggest all columns.
``` select x from my_table order by coalesce(length(| ``` `|` - cursor position should suggest columns.
It would be handy to see major information about column in autocomlete: To achieve this, we should add information about column to `autocomplete` handler: - column data type - if...