| Slony-I HEAD_20051209 Documentation | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 1. Schema schemadoc | Fast Forward | Next |
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;