add docs for repack_get_table_and_inheritors()

This commit is contained in:
Dmitry Ivanov 2017-04-19 14:09:30 +03:00
parent e1f362e831
commit 7dca19d7e0

View File

@ -1294,6 +1294,15 @@ repack_index_swap(PG_FUNCTION_ARGS)
PG_RETURN_VOID();
}
/**
* @fn Datum get_table_and_inheritors(PG_FUNCTION_ARGS)
* @brief Return array containing Oids of parent table and its children.
*
* get_table_and_inheritors(table)
*
* @param table parent table.
* @retval regclass[]
*/
Datum
repack_get_table_and_inheritors(PG_FUNCTION_ARGS)
{