Slony-I 2.0.8 Documentation | ||||
---|---|---|---|---|
Prev | Fast Backward | Chapter 6. Schema schemadoc | Fast Forward | Next |
6.42. ddlscript_complete_int(integer, integer)
Function Properties
Language: PLPGSQL
Return Type: integer
ddlScript_complete_int(set_id, script, only_on_node) Complete processing the DDL_SCRIPT event. This puts tables back into replicated mode.declare p_set_id alias for $1; p_only_on_node alias for $2; v_row record; begin perform updateRelname(p_set_id, p_only_on_node); perform repair_log_triggers(true); return p_set_id; end;