Commit d02d9853 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix typo in variable name.

Masahiko Sawada
parent 181bdb90
...@@ -73,7 +73,7 @@ static void logicalrep_worker_onexit(int code, Datum arg); ...@@ -73,7 +73,7 @@ static void logicalrep_worker_onexit(int code, Datum arg);
static void logicalrep_worker_detach(void); static void logicalrep_worker_detach(void);
bool got_SIGTERM = false; bool got_SIGTERM = false;
static bool on_commit_laucher_wakeup = false; static bool on_commit_launcher_wakeup = false;
Datum pg_stat_get_subscription(PG_FUNCTION_ARGS); Datum pg_stat_get_subscription(PG_FUNCTION_ARGS);
...@@ -526,7 +526,7 @@ ApplyLauncherShmemInit(void) ...@@ -526,7 +526,7 @@ ApplyLauncherShmemInit(void)
void void
AtCommit_ApplyLauncher(void) AtCommit_ApplyLauncher(void)
{ {
if (on_commit_laucher_wakeup) if (on_commit_launcher_wakeup)
ApplyLauncherWakeup(); ApplyLauncherWakeup();
} }
...@@ -540,8 +540,8 @@ AtCommit_ApplyLauncher(void) ...@@ -540,8 +540,8 @@ AtCommit_ApplyLauncher(void)
void void
ApplyLauncherWakeupAtCommit(void) ApplyLauncherWakeupAtCommit(void)
{ {
if (!on_commit_laucher_wakeup) if (!on_commit_launcher_wakeup)
on_commit_laucher_wakeup = true; on_commit_launcher_wakeup = true;
} }
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment