diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-06 14:53:59 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-06 14:53:59 -0400 |
commit | af0eca1a80e3e3a6fa0ee00df4a7883e4f228d0b (patch) | |
tree | dce22f3bc875381106a990100d50d72b5a026335 /src/include/replication/basebackup.h | |
parent | 34e2ef661b47140594feb4718893b42fc6fc1771 (diff) |
Clean up ill-advised attempt to invent a private set of Node tags.
Somebody thought it'd be cute to invent a set of Node tag numbers that were
defined independently of, and indeed conflicting with, the main tag-number
list. While this accidentally failed to fail so far, it would certainly
lead to trouble as soon as anyone wanted to, say, apply copyObject to these
node types. Clang was already complaining about the use of makeNode on
these tags, and I think quite rightly so. Fix by pushing these node
definitions into the mainstream, including putting replnodes.h where it
belongs.
Diffstat (limited to 'src/include/replication/basebackup.h')
-rw-r--r-- | src/include/replication/basebackup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/replication/basebackup.h b/src/include/replication/basebackup.h index 831c33fb4a9..7ce1f38372f 100644 --- a/src/include/replication/basebackup.h +++ b/src/include/replication/basebackup.h @@ -5,14 +5,14 @@ * * Portions Copyright (c) 2010-2011, PostgreSQL Global Development Group * - * src/include/replication/walsender.h + * src/include/replication/basebackup.h * *------------------------------------------------------------------------- */ #ifndef _BASEBACKUP_H #define _BASEBACKUP_H -#include "replication/replnodes.h" +#include "nodes/replnodes.h" extern void SendBaseBackup(BaseBackupCmd *cmd); |