我尝试插入行:
BEGIN;
SET TRANSACTION READ WRITE;
INSERT INTO soft.lk(time_added, expiration_date)
VALUES (now(), now() + INTERVAL '730 days');
COMMIT;
Run Code Online (Sandbox Code Playgroud)
但有以下错误:
cannot set transaction read-write mode during recovery
Run Code Online (Sandbox Code Playgroud)
什么是恢复.我怎么能插入行?Postgres版本:9.0