如何找到加载到EnterpriseDB中的语言?

时间:2009-06-03 20:33:16

标签: postgresql metadata plpgsql spl enterprisedb

如何找到已加载到EnterpriseDB中的语言(PL / pgsql,SPL,Java)?如果有人知道在PostgreSQL上找到加载语言的方法,那么EnterpriseDB建立在PostgreSQL之上。它应该是一样的。

2 个答案:

答案 0 :(得分:5)

已安装的语言已在pl_language中注册,例如:

steve@steve@[local] =# select * from pg_language;
 lanname  | lanowner | lanispl | lanpltrusted | lanplcallfoid | lanvalidator | lanacl
----------+----------+---------+--------------+---------------+--------------+--------
 internal |       10 | f       | f            |             0 |         2246 |
 c        |       10 | f       | f            |             0 |         2247 |
 sql      |       10 | f       | t            |             0 |         2248 |
 plpgsql  |       10 | t       | t            |         73259 |        73260 |
(4 rows)

答案 1 :(得分:1)

检查"pg_language"系统目录(希望EDB与Postgres没有什么不同)。