-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document user-defined functions and stored procedures #307
Comments
It seems this PR covers mysql, mssql and postgreSQL. Is there any other supported dbs with such functionality? |
|
I see that
|
The stored procedures and functions do appear now, but the presentation only works for very simple procedures. Here's what one of my current databases looks like. Stored procedures and functions
Some enhancements that would be nice:
|
This update includes a fix for k1LoW/tbls#369 ("Exclude all tables except specific table"). It seems tbls does not yet support functions and stored procedures, which would probably be quite useful for us: k1LoW/tbls#307
I really wish the functions table would show the comment of the function like for tables, columns, etc. Right now the comments are not shown anywhere which makes the table not that useful for documentation. COMMENT ON FUNCTION foo_bar IS '...'; |
Add UDF and stored procedure documentation to the database. Some databases (eg. mysql) all a comment to
create procedure
that can be used. Others may need to look for comments in the DDL. At a minimum just creating a list of them (and/or a separate page that could be edited) would be helpful.The text was updated successfully, but these errors were encountered: