Matts966

Results 22 comments of Matts966

Yes, they should be handled. Thank you for filing this issue!

TVF can be used as parameterized view for now.

@lukas-at-harren Thank you for your detailed verification! I think that this issue is not an actual problem because `` `table` `` and `table` are recognized as same now. Is there...

Found that making `` `dataset1.table1` `` `dataset1.table1` cause error in case `dataset1.table1` is in JSON. JSON input is `dataset1.table1` and it is weird.

Currently CREATE resources like `dataset.resource_name` is not supported, but CREATE resources like `` `dataset.resource_name` `` is supported. I found that this is because nested catalog is not initialized. Instead, current...

Thank you for this issue. I will add more aggressive cache and automatic snapshot updater (for testing) in https://github.com/Matts966/alphasql/pull/78. After merging this PR, it will be easier to develop AlphaSQL...

Sample snapshot https://github.com/Matts966/alphasql/pull/83 @lukas-at-harren

@Kethku Thank you for this great project :) I am interested in this issue and made a pilot PR in #1459. I am also interested in continuously maintaining this change....

viml version ```viml let g:gui_font_size = 12 silent! execute('set guifont=Menlo:h'.g:gui_font_size) function! ResizeFont(delta) let g:gui_font_size = g:gui_font_size + a:delta execute('set guifont=Menlo:h'.g:gui_font_size) endfunction noremap ResizeFont(1) noremap ResizeFont(-1) ```

Transparency ```viml let g:neovide_transparency=0.7 function! ChangeTransparency(delta) let g:neovide_transparency = g:neovide_transparency + a:delta endfunction noremap ChangeTransparency(0.1) noremap ChangeTransparency(-0.1) ```