projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1c2446
)
Add missing 'break' in Win32 switch statement, reported by Martin Zaun
author
Bruce Momjian
Mon, 15 Dec 2008 21:11:54 +0000
(21:11 +0000)
committer
Bruce Momjian
Mon, 15 Dec 2008 21:11:54 +0000
(21:11 +0000)
contrib/pg_standby/pg_standby.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/pg_standby/pg_standby.c
b/contrib/pg_standby/pg_standby.c
index 15dc3442049a2c020f8f8770074151402bc4c032..45192121aa59c3ed2407b9c0368ef65f2ecdc1db 100644
(file)
--- a/
contrib/pg_standby/pg_standby.c
+++ b/
contrib/pg_standby/pg_standby.c
@@
-1,5
+1,5
@@
/*
- * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.1
3 2008/07/08 15:11:58 heikki
Exp $
+ * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.1
4 2008/12/15 21:11:54 momjian
Exp $
*
*
* pg_standby.c
@@
-117,6
+117,7
@@
CustomizableInitialize(void)
{
case RESTORE_COMMAND_LINK:
SET_RESTORE_COMMAND("mklink", WALFilePath, xlogFilePath);
+ break;
case RESTORE_COMMAND_COPY:
default:
SET_RESTORE_COMMAND("copy", WALFilePath, xlogFilePath);