You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by wu...@apache.org on 2021/06/17 02:36:52 UTC

[shardingsphere] branch opengauss_adapt updated: Fix : remove @Override annotation since getDatabaseType() has been removed from Interface (#10836)

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

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


The following commit(s) were added to refs/heads/opengauss_adapt by this push:
     new ef8188b  Fix : remove @Override annotation since getDatabaseType() has been removed from Interface (#10836)
ef8188b is described below

commit ef8188b496d0de9a70cfdd5c90cb13a3c14cbc78
Author: 孙念君 Sun Nianjun <ka...@outlook.com>
AuthorDate: Thu Jun 17 10:36:15 2021 +0800

    Fix : remove @Override annotation since getDatabaseType() has been removed from Interface (#10836)
---
 .../sql/parser/postgresql/parser/OpenGaussParserFacade.java              | 1 -
 1 file changed, 1 deletion(-)

diff --git a/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/parser/OpenGaussParserFacade.java b/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/parser/OpenGaussParserFacade.java
index cce6487..2962261 100644
--- a/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/parser/OpenGaussParserFacade.java
+++ b/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/parser/OpenGaussParserFacade.java
@@ -26,7 +26,6 @@ import org.apache.shardingsphere.sql.parser.spi.SQLParserFacade;
  */
 public final class OpenGaussParserFacade implements SQLParserFacade {
     
-    @Override
     public String getDatabaseType() {
         return "OpenGauss";
     }