You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2023/06/27 12:16:34 UTC

[shardingsphere] branch master updated: Fix BroadcastNodePath (#26635)

This is an automated email from the ASF dual-hosted git repository.

zhaojinchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new b7b4a5dc5b3 Fix BroadcastNodePath (#26635)
b7b4a5dc5b3 is described below

commit b7b4a5dc5b368645b63679e9eda950919bc92648
Author: ChenJiaHao <Pa...@163.com>
AuthorDate: Tue Jun 27 20:16:26 2023 +0800

    Fix BroadcastNodePath (#26635)
---
 .../shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java b/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
index 3b551d1fabf..df91c0cc15b 100644
--- a/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
+++ b/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
@@ -31,7 +31,7 @@ public final class BroadcastNodePath {
     
     public static final String TABLES = "tables";
     
-    private static final RuleNodePath INSTANCE = new RuleNodePath("broadcast", Collections.singleton(TABLES), Collections.emptyList());
+    private static final RuleNodePath INSTANCE = new RuleNodePath("broadcast", Collections.emptyList(), Collections.singleton(TABLES));
     
     /**
      * Get instance of rule node path.