LOAD
是一个用于将共享库文件加载到当前会话中的实用程序命令。
LOAD
一直存在于 PostgreSQL 中。
示例
使用 LOAD
为当前会话导入 auto_explain
模块
postgres=# LOAD 'auto_explain'; LOAD postgres=# SET auto_explain.log_min_duration = 0; SET postgres=# SELECT count(*) FROM pgbench_branches b JOIN pgbench_accounts a ON b.bid = a.bid; count -------- 100000 (1 row)
参考文献
- PostgreSQL 文档: LOAD