LOAD - load a shared library file
| Use Case | Command | Description |
|---|---|---|
| Load a shared library | LOAD 'filename' |
Loads a shared library file into the server's address space |
| Load a hook library | LOAD 'library_name' |
Loads a library that modifies server behavior via hooks |
| Load from plugins directory | LOAD '$libdir/plugins/library_name' |
Non-superusers can only load from $libdir/plugins/ |
LOAD 'filename'
This command loads a shared library file into the PostgreSQL server's address space. If the file has been loaded already, the command does nothing. Shared library files that contain C functions are automatically loaded whenever one of their functions is called. Therefore, an explicit LOAD is usually only needed to load a library that modifies the server's behavior through "hooks" rather than providing a set of functions.
The library file name is typically given as:
dynamic_library_path)In either case, the platform's standard shared library file name extension may be omitted. See Section 38.10.1 for more information on this topic.
🔒 Non-superusers can only apply LOAD to library files located in $libdir/plugins/ — the specified filename must begin with exactly that string. (It is the database administrator's responsibility to ensure that only "safe" libraries are installed there.)
LOAD is a PostgreSQL extension.
Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-25 19:09 @216.73.217.127
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)