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

wusheng pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-oal-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new af9fc0c  Fix a generation tool bug.
af9fc0c is described below

commit af9fc0cdb989a7943a0063a183730e4cd7c36886
Author: Wu Sheng <wu.sh...@foxmail.com>
AuthorDate: Tue Oct 9 12:11:05 2018 +0800

    Fix a generation tool bug.
---
 .../org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
 
b/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
index 450c211..578963c 100644
--- 
a/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
+++ 
b/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
@@ -64,7 +64,7 @@ public class SourceColumnsFactory {
                 return columnList;
             case "ServiceRelation":
                 columnList = new LinkedList<>();
-                SourceColumn sourceService = new SourceColumn("entityId", 
"source_service_id", String.class, true);
+                SourceColumn sourceService = new SourceColumn("entityId", 
"entity_id", String.class, true);
                 columnList.add(sourceService);
                 return columnList;
             case "ServiceInstanceRelation":

Reply via email to