Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 33261a3

Browse files
committed
Do not mark multimaster publication as 'for_all_tables'.
This way it will not swoh up in numerous \d+ in pg regressions tests.
1 parent 0f3797c commit 33261a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multimaster.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ mtm_after_node_create(PG_FUNCTION_ARGS)
812812
* multimaster is configured.
813813
*/
814814
pub_stmt->pubname = MULTIMASTER_NAME;
815-
pub_stmt->for_all_tables = true;
815+
pub_stmt->for_all_tables = false;
816816
pub_stmt->tables = NIL;
817817
pub_stmt->options = list_make1(
818818
makeDefElem("publish", (Node *) makeString(pstrdup("insert, truncate")), -1)

0 commit comments

Comments
 (0)