| Slony-I 2.0.8 Documentation | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 6. Schema schemadoc | Fast Forward | Next |
6.110. slon_quote_brute(text)
Function Properties
Language: PLPGSQL
Return Type: text
Brutally quote the given textdeclare
p_tab_fqname alias for $1;
v_fqname text default '';
begin
v_fqname := '"' || replace(p_tab_fqname,'"','""') || '"';
return v_fqname;
end;