You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by li...@apache.org on 2022/04/19 02:44:57 UTC

[incubator-doris-spark-connector] branch lide-reed-patch-1 created (now 94ad645)

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

lide pushed a change to branch lide-reed-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-doris-spark-connector.git


      at 94ad645  Remove redundant variable and functions which could lead to compile fail

This branch includes the following new commits:

     new 94ad645  Remove redundant variable and functions which could lead to compile fail

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[incubator-doris-spark-connector] 01/01: Remove redundant variable and functions which could lead to compile fail

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lide pushed a commit to branch lide-reed-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-doris-spark-connector.git

commit 94ad64503146928b9e056652baa769a8d1b4afb9
Author: lide <ma...@sina.com>
AuthorDate: Tue Apr 19 10:44:54 2022 +0800

    Remove redundant variable and functions which could lead to compile fail
---
 .../src/main/java/org/apache/doris/spark/rest/models/Schema.java | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/spark-doris-connector/src/main/java/org/apache/doris/spark/rest/models/Schema.java b/spark-doris-connector/src/main/java/org/apache/doris/spark/rest/models/Schema.java
index a236325..87fc55f 100644
--- a/spark-doris-connector/src/main/java/org/apache/doris/spark/rest/models/Schema.java
+++ b/spark-doris-connector/src/main/java/org/apache/doris/spark/rest/models/Schema.java
@@ -25,7 +25,6 @@ public class Schema {
     private int status = 0;
     private String keysType;
     private List<Field> properties;
-    private String keysType;
 
     public Schema() {
         properties = new ArrayList<>();
@@ -59,14 +58,6 @@ public class Schema {
         this.properties = properties;
     }
 
-    public String getKeysType() {
-        return keysType;
-    }
-
-    public void setKeysType(String keysType) {
-        this.keysType = keysType;
-    }
-
     public void put(String name, String type, String comment, int scale, int precision, String aggregation_type) {
         properties.add(new Field(name, type, comment, scale, precision, aggregation_type));
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org