From caba65e8a1cc0fdd6a10055d17f52b1596c909c9 Mon Sep 17 00:00:00 2001 From: douxin Date: Thu, 29 Sep 2022 15:01:26 +0800 Subject: [PATCH] [bugfix] repair spatial type create table error for online migration --- pg_chameleon/lib/global_lib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pg_chameleon/lib/global_lib.py b/pg_chameleon/lib/global_lib.py index 60298ea..cccc10f 100644 --- a/pg_chameleon/lib/global_lib.py +++ b/pg_chameleon/lib/global_lib.py @@ -587,6 +587,7 @@ class replica_engine(object): self.pg_engine.logger = log_replay[0] self.pg_engine.connect_db() self.pg_engine.set_source_id() + self.pg_engine.check_postgis() self.logger.debug("start replay process") write_pid(self.pid_file, "replay_replica_process") transaction_dispatcher = TransactionDispatcher(6, self.pg_engine) -- Gitee