slon_quote_brute(p_tab_fqname text)

8.111. slon_quote_brute(p_tab_fqname text)

Function Properties

Language: PLPGSQL

Return Type: text

Brutally quote the given text

declare	
    v_fqname text default '';
begin
    v_fqname := '"' || replace(p_tab_fqname,'"','""') || '"';
    return v_fqname;
end;