NAME

DBIO::PostgreSQL::Introspect::Functions - Introspect PostgreSQL functions

VERSION

version 0.900000

DESCRIPTION

Fetches function and procedure metadata from pg_catalog.pg_proc. The full function definition is retrieved via pg_get_functiondef. System functions (in pg_* and information_schema schemas) are excluded.

METHODS

fetch

my $functions = DBIO::PostgreSQL::Introspect::Functions->fetch($dbh, $filter);

Returns a hashref keyed by schema.function_name(identity_args). Each entry has: schema_name, function_name, identity_args, definition (full source from pg_get_functiondef), language, volatility (i/s/v), is_strict, security_definer, return_type.

AUTHOR

DBIO & DBIx::Class Authors

COPYRIGHT AND LICENSE

Copyright (C) 2026 DBIO Authors Portions Copyright (C) 2005-2025 DBIx::Class Authors Based on DBIx::Class, heavily modified.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.