Function Properties
PLPGSQL | integer |
re-enable indexes on the specified table.
This may be set as a SECURITY DEFINER in order to eliminate the need
for superuser access by Slony-I.
begin
update pg_catalog.pg_class set relhasindex ='t' where oid = i_oid;
return 1;
end |