Generate documentation from PL/pgsql source code?

Поиск
Список
Период
Сортировка
От Jeremy Palmer
Тема Generate documentation from PL/pgsql source code?
Дата
Msg-id C6B695652D5E6B4597E90C5734C024261691506F06@prdlsmmsg01.ad.linz.govt.nz
обсуждение исходный текст
Список pgsql-general
I maintain large libraries of files containing PL/pgsql code which I would like to document better. Are there any tools
currentlyavailable that can generate documentation from PL/pgsql source code? Would be good if it had functionality
likedoxygen. e.g 

/**
* my function comment..
*
* @param p_one         The table schema
* @param p_two         The table name
* @return                   If function successfully completed
* @throws RAISE_EXCEPTION If something bad happens
*/
CREATE OR REPLACE FUNCTION my_function(
    p_one  TEXT,
    p_two   TEXT
)
RETURNS BOOLEAN AS
$$
BEGIN
   etc....
END;
$$ LANGUAGE plpgsql;

Cheers
Jeremy

This message contains information, which is confidential and may be subject to legal privilege. If you are not the
intendedrecipient, you must not peruse, use, disseminate, distribute or copy this message. If you have received this
messagein error, please notify us immediately (Phone 0800 665 463 or info@linz.govt.nz) and destroy the original
message.LINZ accepts no responsibility for changes to this email, or for any attachments, after its transmission from
LINZ.Thank You. 


В списке pgsql-general по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Cleaning up a text import
Следующее
От: Alban Hertroys
Дата:
Сообщение: Re: Postgres case insensitive searches