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

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


The following commit(s) were added to refs/heads/master by this push:
     new c6d4b54  [ASTERIXDB-2769][OTH] Remove explicit printing of node group
c6d4b54 is described below

commit c6d4b54367e068a13f33bc507d09a655ed547018
Author: Murtadha Hubail <[email protected]>
AuthorDate: Tue Aug 25 01:10:57 2020 +0300

    [ASTERIXDB-2769][OTH] Remove explicit printing of node group
    
    - user model changes: no
    - storage format changes: no
    - interface changes: no
    
    Details:
    
    - Remove explicit printing of node group from FormatPrintVisitor
      since it will be printed as part of the dataset WITH record.
    
    Change-Id: Id832c3216081a01d2dccbb1184b0a8eaa819b5b2
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/7683
    Integration-Tests: Jenkins <[email protected]>
    Tested-by: Jenkins <[email protected]>
    Reviewed-by: Murtadha Hubail <[email protected]>
    Reviewed-by: Dmitry Lychagin <[email protected]>
---
 .../org/apache/asterix/lang/common/visitor/FormatPrintVisitor.java    | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/asterixdb/asterix-lang-common/src/main/java/org/apache/asterix/lang/common/visitor/FormatPrintVisitor.java
 
b/asterixdb/asterix-lang-common/src/main/java/org/apache/asterix/lang/common/visitor/FormatPrintVisitor.java
index 7c5e8be..3a329cc 100644
--- 
a/asterixdb/asterix-lang-common/src/main/java/org/apache/asterix/lang/common/visitor/FormatPrintVisitor.java
+++ 
b/asterixdb/asterix-lang-common/src/main/java/org/apache/asterix/lang/common/visitor/FormatPrintVisitor.java
@@ -455,10 +455,6 @@ public abstract class FormatPrintVisitor implements 
ILangVisitor<Void, Integer>
             out.print(" using " + 
revertStringToQuoted(externalDetails.getAdapter()));
             printConfiguration(externalDetails.getProperties());
         }
-        String nodeGroupName = dd.getNodegroupName();
-        if (nodeGroupName != null) {
-            out.print(" on " + nodeGroupName);
-        }
         Map<String, String> hints = dd.getHints();
         if (dd.getHints().size() > 0) {
             out.print(" hints ");

Reply via email to