setmovetable_int(p_new_set_id integer, p_tab_id integer)

8.119. setmovetable_int(p_new_set_id integer, p_tab_id integer)

Function Properties

Language: PLPGSQL

Return Type: integer

begin
	-- ----
	-- Move the table to the new set
	-- ----
	update sl_table
			set tab_set = p_new_set_id
			where tab_id = p_tab_id;

	return p_tab_id;
end;