【发布时间】:2020-01-17 02:20:52
【问题描述】:
我正在尝试让 plpython3u 语言在 PostgreSQL 11 中工作(我正在使用 Windows 10 机器)。
我能够使用以下命令成功安装它。
CREATE EXTENSION plpython3u;
我必须下载 python36.dll 并将其保存在 C:\Windows\System32 才能成功执行此操作,因为之前我遇到了以下错误。
无法加载库“C:/Program Files/PostgreSQL/11/lib/plpython3.dll": 指定的模块不能 找到了。
为了测试安装,我尝试创建从PostgreSQL Docs 获得的以下函数。
CREATE FUNCTION pymax (a integer, b integer)
RETURNS integer
AS $$
if a > b:
return a
return b
$$ LANGUAGE plpython3u;
但是执行它会给我以下错误。
SQL 错误 [57P03]: FATAL: 数据库系统处于恢复模式
以下是我从日志中得到的。
Current thread 0x000035b8 (most recent call first):
2020-01-16 20:10:17.136 CST [6980] LOG: server process (PID 12532) was terminated by exception 0xC0000409
2020-01-16 20:10:17.136 CST [6980] DETAIL: Failed process was running: CREATE FUNCTION public.pymax (a integer, b integer)
RETURNS integer
AS $$
if a > b:
return a
return b
$$ LANGUAGE plpython3u
2020-01-16 20:10:17.136 CST [6980] HINT: See C include file "ntstatus.h" for a description of the hexadecimal value.
2020-01-16 20:10:17.136 CST [6980] LOG: terminating any other active server processes
2020-01-16 20:10:17.229 CST [5636] WARNING: terminating connection because of crash of another server process
2020-01-16 20:10:17.229 CST [5636] DETAIL: The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory.
2020-01-16 20:10:17.229 CST [5636] HINT: In a moment you should be able to reconnect to the database and repeat your command.
2020-01-16 20:10:17.246 CST [6980] LOG: all server processes terminated; reinitializing
2020-01-16 20:10:17.373 CST [4944] LOG: database system was interrupted; last known up at 2020-01-16 20:09:02 CST
2020-01-16 20:10:17.392 CST [9880] FATAL: the database system is in recovery mode
2020-01-16 20:10:17.509 CST [11412] FATAL: the database system is in recovery mode
2020-01-16 20:10:17.623 CST [12472] FATAL: the database system is in recovery mode
2020-01-16 20:10:17.730 CST [12480] FATAL: the database system is in recovery mode
2020-01-16 20:10:17.843 CST [12432] FATAL: the database system is in recovery mode
2020-01-16 20:10:17.951 CST [12492] FATAL: the database system is in recovery mode
2020-01-16 20:10:18.060 CST [12744] FATAL: the database system is in recovery mode
2020-01-16 20:10:18.175 CST [12160] FATAL: the database system is in recovery mode
2020-01-16 20:10:18.298 CST [13084] FATAL: the database system is in recovery mode
2020-01-16 20:10:18.828 CST [4944] LOG: database system was not properly shut down; automatic recovery in progress
2020-01-16 20:10:18.835 CST [4944] LOG: redo starts at 0/17FF400
2020-01-16 20:10:18.835 CST [4944] LOG: redo done at 0/17FF438
2020-01-16 20:10:19.044 CST [6980] LOG: database system is ready to accept connections
Fatal Python error: Py_Initialize: unable to load the file system codec
ModuleNotFoundError: No module named 'encodings'
任何帮助将不胜感激。
【问题讨论】:
标签: python postgresql python-3.6 postgresql-11 plpython