Fix typo in variable name.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 6 Feb 2017 09:45:08 +0000 (11:45 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 6 Feb 2017 09:45:08 +0000 (11:45 +0200)
Masahiko Sawada

src/backend/replication/logical/launcher.c

index e9ce061e83cab31498942863d37309f9fd1a2d6a..39530f96a3fc60e2e417d00ab7f98c2a991ec5cc 100644 (file)
@@ -73,7 +73,7 @@ static void logicalrep_worker_onexit(int code, Datum arg);
 static void logicalrep_worker_detach(void);
 
 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);
 
@@ -526,7 +526,7 @@ ApplyLauncherShmemInit(void)
 void
 AtCommit_ApplyLauncher(void)
 {
-       if (on_commit_laucher_wakeup)
+       if (on_commit_launcher_wakeup)
                ApplyLauncherWakeup();
 }
 
@@ -540,8 +540,8 @@ AtCommit_ApplyLauncher(void)
 void
 ApplyLauncherWakeupAtCommit(void)
 {
-       if (!on_commit_laucher_wakeup)
-               on_commit_laucher_wakeup = true;
+       if (!on_commit_launcher_wakeup)
+               on_commit_launcher_wakeup = true;
 }
 
 void