sql-language-server icon indicating copy to clipboard operation
sql-language-server copied to clipboard

postgresql meta syntax support

Open EdmundsEcho opened this issue 3 years ago • 0 comments

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:

\set obj_name 'sharing_queue_on_update_trigger'

create or replace function :obj_name()
returns trigger as $$
    begin
        ...
    end;
$$ language plpgsql;

EdmundsEcho avatar Apr 14 '22 15:04 EdmundsEcho